/* 🌍 Global Styles */
body {
  font-family: 'Playfair Display', serif;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}


/* 🌿 Glass Navbar Styling */
.glass-nav {
  backdrop-filter: blur(18px);
  background: linear-gradient(90deg, rgba(22,163,74,0.35) 0%, rgba(16,185,129,0.2) 50%, rgba(255,255,255,0) 100%);
  border-bottom: 1px solid rgba(22,163,74,0.25);
  box-shadow: 0 8px 20px rgba(16,185,129,0.2);
  transition: all 0.4s ease;
  font-family: 'Playfair Display', serif;
}

/* Logo */
.glass-nav .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #16a34a;
  text-shadow: 0 2px 6px rgba(16,185,129,0.5);
  transition: all 0.3s ease;
}
.glass-nav .logo:hover {
  transform: scale(1.05);
  color: #22c55e;
  text-shadow: 0 0 12px rgba(22,163,74,0.6);
}

/* Desktop Links */
.glass-nav nav a {
  position: relative;
  transition: all 0.3s ease;
}
.glass-nav nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #22c55e;
  transition: 0.4s;
}
.glass-nav nav a:hover::after {
  width: 100%;
}





/* FMOBILE Responsiveness */
.container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.item {
  flex: 1 1 300px; /* flexible width with min 300px */
}





/* CTA Button */
.glass-nav a.btn {
  background: linear-gradient(to right, #16a34a, #22c55e);
  box-shadow: 0 6px 20px rgba(16,185,129,0.4);
  transition: all 0.3s ease;
}
.glass-nav a.btn:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, #22c55e, #4ade80);
  box-shadow: 0 10px 25px rgba(16,185,129,0.6);
}

/* Mobile Menu */
#mobile-menu {
  backdrop-filter: blur(20px);
  background: linear-gradient(to bottom, rgba(236,253,245,0.9), rgba(255,255,255,0.6));
  border-top: 1px solid rgba(22,163,74,0.2);
  box-shadow: 0 8px 20px rgba(16,185,129,0.2);
  transition: all 0.4s ease;
}

/* Mobile Menu Links */
#mobile-menu a {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}
#mobile-menu a:hover {
  background: rgba(22,163,74,0.1);
  color: #16a34a;
  transform: translateY(-2px);
}

/* Floating Glow Animation for Navbar */
@keyframes nav-glow {
  0%, 100% { box-shadow: 0 4px 10px rgba(16,185,129,0.3); }
  50% { box-shadow: 0 6px 20px rgba(16,185,129,0.5); }
}
.glass-nav:hover {
  animation: nav-glow 2s ease-in-out infinite;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .glass-nav nav {
    display: none;
  }
  #mobile-menu {
    width: 100%;
  }
}

/* Hero Section & Orbs */
.hero { font-family: 'Playfair Display', serif; position: relative; }
.hero-bg img { object-fit: cover; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.1; }
.orb1 { width: 24rem; height: 24rem; background: #22c55e; top: -6rem; left: -6rem; }
.orb2 { width: 20rem; height: 20rem; background: #facc15; bottom: -4rem; right: -4rem; }

.hero-light {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  transform: rotate(25deg);
  pointer-events: none;
  animation: light-move 12s linear infinite;
  z-index: 5; /* Ensure it’s above background but below content */
}

@keyframes light-move {
  0% { transform: rotate(25deg) translateX(-50%) translateY(-50%); }
  50% { transform: rotate(25deg) translateX(-40%) translateY(-55%); }
  100% { transform: rotate(25deg) translateX(-50%) translateY(-50%); }
}


/* Glass Form */
.glass {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glass input,
.glass textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  border: none;
  outline: none;
  margin-bottom: 1rem;
  font-size: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  color: #111827;
}
.glass button {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  border: none;
  background: linear-gradient(to right, #16a34a, #facc15);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.glass button:hover {
  transform: translateY(-3px);
  background: linear-gradient(to right, #22c55e, #fcd34d);
  box-shadow: 0 15px 25px rgba(34, 197, 94, 0.2);
}

/* Hero Lines Animation */
.hero-line { opacity: 0; transform: translateY(2rem); transition: all 0.8s ease; }

/* Scroll Indicator */
.scroll-indicator .mouse {
  width: 24px; height: 40px; border: 2px solid #fff; border-radius: 12px; position: relative;
}
.scroll-indicator .mouse::before {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px;
  background: #fff; border-radius: 2px; animation: scroll 1.5s infinite;
}
@keyframes scroll { 0% { opacity: 0; transform: translate(-50%, 0); } 50% { opacity: 1; transform: translate(-50%, 12px); } 100% { opacity: 0; transform: translate(-50%, 0); } }

/* Responsive */
@media (max-width: 1024px) { .hero { min-height: 85vh; } }
@media (max-width: 768px) { .hero-content { text-align: center; } }


/* Luxury Card */
.luxury-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  border-radius: 2rem;
  padding: 2.5rem 2rem;
  border: 2px solid #fbbf24; /* Gold border */
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.luxury-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
  border-color: #f59e0b;
}

.luxury-card h3 {
  color: #16a34a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-top: 1rem;
  transition: color 0.3s ease;
}

.luxury-card:hover h3 { color: #fbbf24; }

.luxury-card p { color: #374151; margin-top: 0.5rem; }

/* Icon Wrapper & Floating */
.icon-wrapper {
  position: relative;
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.25));
  transition: transform 0.5s ease;
}

.icon-wrapper.float { animation: float 3s ease-in-out infinite alternate; }

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

/* Shimmer */
.icon-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
  animation: shimmer 2s infinite;
  border-radius: 1rem;
}

@keyframes shimmer { 0% { left: -75%; } 100% { left: 125%; } }

/* Sparkles */
.sparkle {
  position: absolute;
  width: 6px; height: 6px;
  background: linear-gradient(45deg, #fbbf24, #fffacd);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: sparkle 1.5s infinite;
}

@keyframes sparkle {
  0% { opacity: 0; transform: scale(0.2) translate(0,0); }
  50% { opacity: 1; transform: scale(1.2) translate(5px,-5px); }
  100% { opacity: 0; transform: scale(0.2) translate(-5px,5px); }
}

.luxury-card .sparkle:nth-child(1) { animation-delay: 0s; top: 10%; left: 15%; }
.luxury-card .sparkle:nth-child(2) { animation-delay: 0.3s; top: 20%; left: 75%; }
.luxury-card .sparkle:nth-child(3) { animation-delay: 0.6s; top: 70%; left: 25%; }
.luxury-card .sparkle:nth-child(4) { animation-delay: 0.9s; top: 65%; left: 60%; }

/* Interactive Micro Reflection on Hover */
.icon-wrapper:hover .icon {
  transform: scale(1.15) rotateZ(2deg); /* slight pop & tilt */
  filter: drop-shadow(0 10px 20px rgba(255, 223, 0, 0.5)); /* soft gold glow */
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Reflection overlay effect */
.icon-wrapper::after {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25) 0%, transparent 60%);
  opacity: 0;
  pointer-events: none;
  transform: rotate(45deg) scale(0);
  transition: all 0.6s ease;
}

.icon-wrapper:hover::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

/* Combine with shimmer for ultimate premium feel */
.icon-wrapper:hover::before {
  animation-duration: 1.2s; /* faster shimmer on hover */
}
/* ===========================
  how it works 
=========================== */
/* 🌟 Scoped How It Works Section */
#how-it-works {
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem;
}

/* Flare Backgrounds */
#how-it-works .flare {
  position: absolute;
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, #fbbf24, transparent 70%);
  filter: blur(150px);
  opacity: 0.4;
  animation: float 15s infinite ease-in-out alternate;
}

#how-it-works .flare1 { top: -5rem; left: -5rem; }
#how-it-works .flare2 { bottom: -10rem; right: -8rem; }
#how-it-works .flare3 { top: 50%; left: 80%; }

@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(45deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* Timeline Cards */
#how-it-works .timeline-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  border-radius: 2rem;
  padding: 2rem;
  border: 2px solid #fbbf24; /* gold border */
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.3s ease;
}

#how-it-works .timeline-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
  border-color: #f59e0b; /* deeper gold */
}

/* Timeline Icons */
#how-it-works .hiw-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

#how-it-works .hiw-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #fbbf24, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

#how-it-works .hiw-icon:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

/* Icon Shimmer */
#how-it-works .hiw-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.3) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -75%; }
  100% { left: 125%; }
}

/* Text Styling */
#how-it-works .timeline-card h3 {
  color: #16a34a; /* brand green */
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  transition: color 0.3s ease;
}

#how-it-works .timeline-card:hover h3 {
  color: #fbbf24; /* gold on hover */
}

#how-it-works .timeline-card p {
  color: #374151;
  transition: color 0.3s ease;
}

/* Timeline Gold Line */
#how-it-works .vertical-line {
  background: linear-gradient(to bottom, #fbbf24, #22c55e, #fbbf24);
  filter: drop-shadow(0 0 20px #fbbf24/50);
}

/* How It Works Section - Timeline Adjustments */
#how-it-works .timeline-step .w-1\/2 {
  width: 100% !important;
  padding: 0 !important;
}



#how-it-works .hiw-icon-wrapper {
  margin: 2rem 0;
}

#how-it-works .timeline-card {
  padding: 1.5rem;
}

/* Tablet Responsiveness */
@media (max-width: 1024px) {
  #how-it-works .timeline-step {
    flex-direction: column !important;
    text-align: center !important;
  }
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
  #how-it-works {
    padding: 4rem 1rem;
  }

  #how-it-works h2 {
    font-size: 2.5rem;
  }

  #how-it-works p {
    font-size: 1rem;
  }

  #how-it-works .hiw-icon {
    width: 3rem;
    height: 3rem;
  }

  #how-it-works .timeline-card h3 {
    font-size: 1.25rem;
  }

  #how-it-works .timeline-card p {
    font-size: 0.9rem;
  }
}

/* ===========================
   We Use Brands You Love – Luxury Gold Divider
=========================== */
/* Guide Section Cards */
.guide-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  border: 2px solid #fbbf24; /* gold border */
  border-radius: 2rem;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  border-color: #f59e0b; /* deep gold */
}

/* Icon Embossed + Glow + Sparkle */
.guide-icon {
  width: 5rem; height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #fbbf24, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}
.guide-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  stroke: #16a34a;
}
.guide-card:hover .guide-icon {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* CTA Button */
.guide-cta {
  display: inline-block;
  padding: 1rem 3rem;
  background: linear-gradient(120deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.guide-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Lens Flares & Sparkles */
.guide-bg-effects { position: absolute; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.lens-flare { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.35; mix-blend-mode: screen; animation: floatLens 8s infinite alternate; }
.flare1 { width: 300px; height: 300px; background: radial-gradient(circle, #fbbf24 0%, transparent 70%); top: 10%; left: 15%; }
.flare2 { width: 400px; height: 400px; background: radial-gradient(circle, #f59e0b 0%, transparent 70%); top: 50%; left: 70%; }

.sparkle { position: absolute; width: 6px; height: 6px; background: radial-gradient(circle, #fff 0%, transparent 80%); border-radius: 50%; opacity: 0.8; animation: floatSparkle 5s linear infinite; }
.sparkle1 { top: 20%; left: 30%; animation-delay: 0s; }
.sparkle2 { top: 60%; left: 50%; animation-delay: 2s; }
.sparkle3 { top: 40%; left: 70%; animation-delay: 4s; }

@keyframes floatLens { 0% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-30px) scale(1.1); } 100% { transform: translate(-15px,20px) scale(0.95); } }
@keyframes floatSparkle { 0% { transform: translate(0,0) scale(0.8); opacity:0.6; } 50% { transform: translate(10px,-10px) scale(1.2); opacity:1; } 100% { transform: translate(-10px,10px) scale(0.9); opacity:0.7; } }

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .guide-card { padding: 2rem 1.5rem; }
  .guide-icon { width: 4rem; height: 4rem; }
  .guide-icon svg { width: 2rem; height: 2rem; }
  h2 { font-size: 2.5rem; }
  p { font-size: 1rem; }
  .grid { grid-template-columns: 1fr; gap: 2rem; }
}
/* Parallax transforms for guide icons and lens flares */
.guide-icon, .lens-flare {
  will-change: transform;
  transition: transform 0.1s ease-out;
}








/* ===========================
   Ultra-Luxury Premium Services
=========================== */
#services {
  position: relative;
  background: linear-gradient(to bottom, #ffffff, #f0fdf4, #ffffff);
  padding: 6rem 1rem;
  overflow: hidden;
}

/* Gradient Animated Section Title */
.services-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
  background: linear-gradient(90deg, #10b981, #065f46, #34d399);
  background-size: 200% auto;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
  margin-bottom: 6rem;
}

/* Services Container */
.services-container {
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

/* Service Card */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  perspective: 2000px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 3xl;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25), 0 10px 30px rgba(16,185,129,0.2);
}
.service-card:hover {
  transform: translateY(-15px) rotateX(2deg) rotateY(2deg);
  box-shadow: 0 40px 100px rgba(0,0,0,0.3), 0 20px 60px rgba(16,185,129,0.4);
}

/* Alternate Card Layout on md+ */
@media (min-width: 768px) {
  .service-card:nth-child(even) { flex-direction: row-reverse; text-align: right; }
  .service-card:nth-child(odd) { flex-direction: row; text-align: left; }
}

/* Card Image Wrapper */
.card-image-wrapper {
  position: relative;
  border-radius: 3xl;
  overflow: hidden;
  height: 24rem;
  width: 100%;
  max-width: 480px;
  transition: transform 0.6s ease;
  flex-shrink: 0;
}
.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3xl;
  transition: transform 0.7s ease, filter 0.6s ease;
}
.card-image-wrapper img:hover { 
  transform: scale(1.08);
  filter: brightness(1.2);
}

/* Text container */
.card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  max-width: 600px;
}

/* Card Text */
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg,#10b981,#065f46);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}
.card-description {
  font-size: 1.1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Glass & Shimmer Book Now Button */
.card-button {
  position: relative;
  padding: 0.7rem 1.8rem;
  background: linear-gradient(to right, #10b981, #059669);
  color: white;
  font-weight: 600;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(16,185,129,0.4);
  overflow: hidden;
  width: fit-content;
  transition: all 0.4s ease;
  align-self: flex-start; /* fix mobile button position */
}
.card-button:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 30px rgba(16,185,129,0.6);
  background: linear-gradient(to right,#059669,#10b981);
}
.button-shimmer {
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0.1;
  mix-blend-mode: screen;
  animation: shimmer 2s infinite linear;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .service-card { flex-direction: column !important; text-align: center; padding: 1.5rem; }
  .card-image-wrapper { height: 20rem; max-width: 100%; }
  .card-button { align-self: center; margin-top: 1rem; }
}
@media (max-width: 640px) {
  .services-title { font-size: 2.5rem; }
  .card-title { font-size: 2rem; }
  .card-description { font-size: 1rem; }
  .card-button { padding: 0.6rem 1.5rem; font-size: 0.95rem; }
}









/* 🌍 Deals Section */
.deals-section {
  position: relative;
  background: #f3f4f6;
  padding: 5rem 1.5rem;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Gradient Circles */
.deals-bg .circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.circle-1 {
  top: -8rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  background: rgba(22,163,74,0.2);
}
.circle-2 {
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  background: rgba(74,222,128,0.3);
}

/* Layout */
.deals-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

@media (max-width: 768px) {
  .deals-container {
    grid-template-columns: 1fr;
  }
}

/* Text Side */
.deals-text h2 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.3;
  color: #111827;
}
.deals-text h2 span {
  color: #16a34a;
}
.deals-text p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: #374151;
}
.deals-text ul {
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}
.deals-text li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #374151;
}
.deals-text .dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #16a34a;
  border-radius: 50%;
  margin-right: 0.75rem;
}

/* Form Side */
.deals-form {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-radius: 1.25rem;
  padding: 2.5rem;
}

.deals-form .input-group {
  position: relative;
  margin-bottom: 1.5rem;
}
.deals-form i {
  position: absolute;
  left: 0.75rem;
  top: 0.9rem;
  color: #9ca3af;
}
.deals-form input {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.deals-form input:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.3);
}

.deals-form button {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: #16a34a;
  color: white;
  border: none;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.deals-form button:hover {
  background: #15803d;
}
/* Background fix */
.bg-gray-100 {
  background: #f9fafb;
}

/* Shape blur effect */
.blur-3xl {
  filter: blur(60px);
}
.blur-2xl {
  filter: blur(40px);
}

/* Stronger shadow for form */
.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}


/* 🌟 Footer Luxury Styling */
#footer {
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Floating Background Animation */
@keyframes float-slow {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(10px, -10px) rotate(20deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
@keyframes float-slow-reverse {
  0% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-10px, 10px) rotate(-20deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}
.animate-float-slow { animation: float-slow 8s ease-in-out infinite; }
.animate-float-slow-reverse { animation: float-slow-reverse 7s ease-in-out infinite; }

/* Footer Panel Glassmorphism */
.footer-panel {
  transition: all 0.4s ease;
  backdrop-filter: blur(12px);
  border-radius: 2rem;
  border: 1px solid rgba(16,185,129,0.2);
}
.footer-panel:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 25px 40px rgba(16,185,129,0.3);
  border-color: rgba(251,191,36,0.3);
}

/* Footer Links */
.footer-link {
  color: #d1fae5;
  transition: all 0.3s ease;
}
.footer-link:hover {
  color: #fbbf24;
  text-shadow: 0 0 10px rgba(251,191,36,0.5);
}

/* Social Icons */
.footer-icon {
  color: #d1fae5;
  transition: all 0.3s ease;
}
.footer-icon:hover {
  color: #16a34a;
  transform: scale(1.2);
  text-shadow: 0 0 15px rgba(251,191,36,0.6);
}

/* Footer Headings */
#footer h2, #footer h3 {
  font-family: 'Playfair Display', serif;
  color: #f9fafb;
  text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Bottom Bar */
#footer .border-t {
  border-color: rgba(255,255,255,0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  #footer .grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  #footer .footer-panel {
    margin-bottom: 2rem;
  }
}


/* Lens Flare */
.lens-flare {
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(255,255,200,0.1), transparent 50%);
  filter: blur(120px);
  top: -10%;
  left: -10%;
  pointer-events: none;
  animation: flare 20s linear infinite;
}

@keyframes flare {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px,10px) scale(1.05); }
  100% { transform: translate(0,0) scale(1); }
}

/* Floating Particles */
.particle {
  position: absolute;
  width: calc(0.3rem + var(--i)*0.05rem);
  height: calc(0.3rem + var(--i)*0.05rem);
  background: radial-gradient(circle, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  top: calc(100% * var(--i)/30);
  left: calc(100% * var(--i)/30);
  animation: drift 15s linear infinite;
  opacity: calc(0.3 + var(--i)*0.02);
}

@keyframes drift {
  0% { transform: translate(0,0) scale(1); opacity: 0.3; }
  50% { transform: translate(calc(-50px + var(--i)*2px), calc(-30px + var(--i)*1px)) scale(1.2); opacity: 0.6; }
  100% { transform: translate(0,0) scale(1); opacity: 0.3; }
}

/* Logo Hover Effects */
.logo-wrapper img {
  height: 4rem;
  opacity: 0.8;
  transition: all 0.5s ease;
  transform: perspective(500px) rotateX(0deg) rotateY(0deg);
  filter: drop-shadow(0 4px 12px rgba(255,215,0,0.6));
}

.logo-wrapper:hover img {
  opacity: 1;
  transform: perspective(500px) rotateX(8deg) rotateY(8deg) scale(1.05);
  filter: drop-shadow(0 8px 24px rgba(255,215,0,0.8));
}

/* Responsive */
@media (max-width: 640px) {
  .logo-wrapper img { height: 3rem; }
  .lens-flare { display: none; }
}

/* 🌿 Inspect Form Section - Ultra Luxury Styling */
#Inspect-form {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(to bottom, #f0fdf4, #e6f4f1, #f0fdf4);
  padding: 6rem 1.5rem;
  font-family: 'Inter', sans-serif;
}

/* Background Shapes */
#Inspect-form .absolute div {
  transition: all 1s ease;
}

/* Left Side Content */
#Inspect-form .text-gray-900 {
  position: relative;
  z-index: 10;
}

#Inspect-form h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: #065f46; /* Deep emerald */
  line-height: 1.1;
  text-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: relative;
}

/* Gold Lens Flare / Sparkle Behind Heading */
#Inspect-form h2::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -10px;
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  animation: sparkle 3s infinite alternate;
}

@keyframes sparkle {
  0% { transform: translate(0,0) scale(1); opacity:0.15; }
  50% { transform: translate(10px, -5px) scale(1.05); opacity:0.25; }
  100% { transform: translate(0,0) scale(1); opacity:0.15; }
}

/* Paragraph and List Styling */
#Inspect-form p, 
#Inspect-form ul {
  font-weight: 500;
  color: #065f46;
  text-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

#Inspect-form ul li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

/* Gold Star Shimmer for List */
#Inspect-form ul li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  color: #fbbf24;
  font-size: 1.2rem;
  animation: star-shimmer 2.5s infinite alternate;
}

@keyframes star-shimmer {
  0% { transform: scale(1) rotate(0deg); opacity: 0.6; }
  50% { transform: scale(1.2) rotate(10deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 0.6; }
}

/* Hover Lift for List Items */
#Inspect-form ul li:hover {
  transform: translateX(5px);
}

/* Right Side Form Styling */
#Inspect-form form {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 2rem;
  padding: 3rem;
  border: 2px solid rgba(251,191,36,0.4); /* gold tint border */
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
}

/* Form Input Fields */
#Inspect-form input,
#Inspect-form select {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border-radius: 1rem;
  border: 1px solid #d1fae5;
  outline: none;
  transition: all 0.3s ease;
}

#Inspect-form input:focus,
#Inspect-form select:focus {
  box-shadow: 0 0 20px rgba(251,191,36,0.3);
  transform: translateY(-2px);
}

/* Input Icons */
#Inspect-form span {
  color: #16a34a;
}

/* Form Button */
#Inspect-form button {
  background: linear-gradient(to right, #16a34a, #059669);
  color: white;
  font-weight: 700;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#Inspect-form button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Floating Sparkles Animation on Form */
#Inspect-form form::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
  opacity: 0.05;
  filter: blur(50px);
  animation: sparkle 4s infinite alternate;
  pointer-events: none;
}

/* Background Shapes Floating */
#Inspect-form .absolute div {
  transition: transform 2s ease-in-out;
}

#Inspect-form .absolute div:nth-child(1) {
  animation: float1 6s ease-in-out infinite alternate;
}
#Inspect-form .absolute div:nth-child(2) {
  animation: float2 5s ease-in-out infinite alternate-reverse;
}

@keyframes float1 { 0%{transform:translate(0,0);} 100%{transform:translate(15px,-20px);} }
@keyframes float2 { 0%{transform:translate(0,0);} 100%{transform:translate(-15px,20px);} }

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  #Inspect-form .grid {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  #Inspect-form .text-gray-900 {
    margin-bottom: 2rem;
  }
}

@media (max-width: 640px) {
  #Inspect-form {
    padding: 4rem 1rem;
  }
  #Inspect-form h2 {
    font-size: 2.5rem;
  }
  #Inspect-form p, #Inspect-form ul {
    font-size: 1rem;
  }
  #Inspect-form ul li::before {
    font-size: 1rem;
  }
  #Inspect-form input, #Inspect-form select {
    padding-left: 2.5rem;
  }
}


/* LIVING ROOM */
#guide-sidebar {
  background-color: #111827;
  padding: 1rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 280px;
  color: #E5E7EB;
  font-family: 'Inter', sans-serif;
}

#guide-sidebar button {
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background-color: transparent;
  color: #E5E7EB;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: left;
}
#guide-sidebar button.active {
  border-left: 4px solid #22C55E;
  background-color: rgba(34,197,94,0.1);
  color: #22C55E;
}

#living-guide-content {
  font-family: 'Inter', sans-serif;
  color: #E5E7EB;
  line-height: 1.8;
  font-size: 1rem;
}
#living-guide-content ul { margin-top: 0.5rem; margin-left: 1rem; }
#living-guide-content li { margin-bottom: 0.5rem; font-size: 0.98rem; color: #D1D5DB; }

.fade-slide-up { animation: fadeSlideUp 0.4s ease forwards; opacity: 0; transform: translateY(20px);}
@keyframes fadeSlideUp { to { opacity:1; transform: translateY(0);} }

#progress-container { height:6px; background: rgba(255,255,255,0.1); border-radius:3px; overflow:hidden; margin-top:2rem; }
#progress-bar { height:100%; background:#22C55E; width:0%; transition: width 0.4s ease; }

#guide-nav { display:flex; justify-content: space-between; margin-top:1.5rem; }
#guide-nav button { background: rgba(34,197,94,0.1); color:#22C55E; font-weight:600; padding:0.6rem 1.2rem; border-radius:0.75rem; transition: all 0.3s ease; }
#guide-nav button:hover { background:#22C55E; color:#fff; }

#living-guide { background: rgba(0,0,0,0.85); }
#living-guide > div > button { color:#E5E7EB; transition: color 0.3s ease; }
#living-guide > div > button:hover { color:#22C55E; }



/* ==========================
   KITCHEN GUIDE STYLING
========================== */
/* Sidebar */
#kitchen-guide-sidebar {
  background-color: #111827;
  padding: 1rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 280px;
  color: #E5E7EB;
  font-family: 'Inter', sans-serif;
}

/* Step Buttons */
#kitchen-guide-sidebar button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background-color: transparent;
  color: #E5E7EB;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
}

/* Step Number Circle */
#kitchen-guide-sidebar button .step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
  color: #E5E7EB;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Active Step */
#kitchen-guide-sidebar button.active {
  border-left: 4px solid #22C55E;
  background-color: rgba(34,197,94,0.1);
  color: #22C55E;
}

#kitchen-guide-sidebar button.active .step-number {
  background-color: #22C55E;
  color: #fff;
}

/* Horizontal line below each step except last */
#kitchen-guide-sidebar button:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 3rem;
  right: 0;
  height: 1px;
  background-color: rgba(255,255,255,0.1);
}

/* Main Content Area */
#kitchen-guide-content {
  font-family: 'Inter', sans-serif;
  color: #E5E7EB;
  line-height: 1.8;
  font-size: 1rem;
  padding-right: 1rem;
  min-height: 400px; /* Keeps Next/Prev buttons at bottom */
}

#kitchen-guide-content p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

#kitchen-guide-content ul {
  margin-top: 0.5rem;
  margin-left: 1rem;
}

#kitchen-guide-content li {
  margin-bottom: 0.5rem;
  font-size: 0.98rem;
  color: #D1D5DB;
}

/* Fade-in effect for steps */
.fade-slide-up {
  animation: fadeSlideUp 0.4s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

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

/* Progress Bar */
#kitchen-progress-container {
  height: 6px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 2rem;
}

#kitchen-progress-bar {
  height: 100%;
  background-color: #22C55E;
  width: 0%;
  transition: width 0.4s ease;
}

/* Navigation Buttons */
#kitchen-guide-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
}

#kitchen-guide-nav button {
  background-color: rgba(34,197,94,0.1);
  color: #22C55E;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

#kitchen-guide-nav button:hover {
  background-color: #22C55E;
  color: #fff;
}

/* CTA Button below Next/Prev buttons */
#kitchen-cta {
  display: block;
  margin: 1.5rem auto 0;
  padding: 0.75rem 1.5rem;
  background-color: #22C55E;
  color: #fff;
  text-align: center;
  font-weight: 600;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

#kitchen-cta:hover {
  background-color: #16A34A;
}

/* Modal Overlay */
#kitchen-guide {
  background-color: rgba(0,0,0,0.85);
  padding: 2rem;
}

/* Close Button */
#kitchen-guide > div > button {
  color: #E5E7EB;
  transition: color 0.3s ease;
}

#kitchen-guide > div > button:hover {
  color: #22C55E;
}



/* Fade-Slide Animation */
.fade-slide-up {
  animation: fadeSlideUp 0.4s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}
@keyframes fadeSlideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================= */
/* Wardrobe Guide Sidebar Buttons */
/* ============================= */
/* Sidebar identical to Living Room */
#wardrobe-guide-sidebar {
  background-color: #111827;
  padding: 1rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 280px;
  color: #E5E7EB;
  font-family: 'Inter', sans-serif;
}

#wardrobe-guide-sidebar button {
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background-color: transparent;
  color: #E5E7EB;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
#wardrobe-guide-sidebar button.active {
  border-left: 4px solid #22C55E;
  background-color: rgba(34,197,94,0.1);
  color: #22C55E;
}

/* Step Icons inside sidebar buttons */
#wardrobe-guide-sidebar .step-icon {
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
}

/* Content */
#wardrobe-guide-content {
  font-family: 'Inter', sans-serif;
  color: #E5E7EB;
  line-height: 1.8;
  font-size: 1rem;
}
#wardrobe-guide-content ul { margin-top: 0.5rem; margin-left: 1rem; }
#wardrobe-guide-content li { margin-bottom: 0.5rem; font-size: 0.98rem; color: #D1D5DB; }

/* Fade animation */
.fade-slide-up { animation: fadeSlideUp 0.4s ease forwards; opacity: 0; transform: translateY(20px);}
@keyframes fadeSlideUp { to { opacity:1; transform: translateY(0);} }

/* Progress Bar */
#wardrobe-progress-container { height:6px; background: rgba(255,255,255,0.1); border-radius:3px; overflow:hidden; margin-top:2rem; }
#wardrobe-progress-bar { height:100%; background:#22C55E; width:0%; transition: width 0.4s ease; }

/* Navigation */
#wardrobe-guide-nav { display:flex; justify-content: space-between; margin-top:1.5rem; }
#wardrobe-guide-nav button { background: rgba(34,197,94,0.1); color:#22C55E; font-weight:600; padding:0.6rem 1.2rem; border-radius:0.75rem; transition: all 0.3s ease; }
#wardrobe-guide-nav button:hover { background:#22C55E; color:#fff; }

/* Modal background */
#wardrobe-guide { background: rgba(0,0,0,0.85); }
#wardrobe-guide > div > button { color:#E5E7EB; transition: color 0.3s ease; }
#wardrobe-guide > div > button:hover { color:#22C55E; }

/* Step Images */
.step-img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  margin-bottom: 1rem;
  display: block;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  #wardrobe-guide {
    align-items: flex-start;
    padding: 4vw;
  }
  #wardrobe-guide-sidebar {
    flex-direction: row;
    overflow-x: auto;
    min-width: 0;
  }
  #wardrobe-guide-sidebar button {
    white-space: nowrap;
    flex-shrink: 0;
  }
  #wardrobe-guide-content {
    max-height: 55vh;
  }
}

/* Sidebar identical to Living Room */
#pooja-guide-sidebar {
  background-color: #111827;
  padding: 1rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 280px;
  color: #E5E7EB;
  font-family: 'Inter', sans-serif;
}

#pooja-guide-sidebar button {
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background-color: transparent;
  color: #E5E7EB;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
#pooja-guide-sidebar button.active {
  border-left: 4px solid #22C55E;
  background-color: rgba(34,197,94,0.1);
  color: #22C55E;
}

/* Step Icons inside sidebar buttons */
#pooja-guide-sidebar .step-icon {
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
}

/* Content */
#pooja-guide-content {
  font-family: 'Inter', sans-serif;
  color: #E5E7EB;
  line-height: 1.8;
  font-size: 1rem;
}
#pooja-guide-content ul { margin-top: 0.5rem; margin-left: 1rem; }
#pooja-guide-content li { margin-bottom: 0.5rem; font-size: 0.98rem; color: #D1D5DB; }

/* Fade animation */
.fade-slide-up { animation: fadeSlideUp 0.4s ease forwards; opacity: 0; transform: translateY(20px);}
@keyframes fadeSlideUp { to { opacity:1; transform: translateY(0);} }

/* Progress Bar */
#pooja-progress-container { height:6px; background: rgba(255,255,255,0.1); border-radius:3px; overflow:hidden; margin-top:2rem; }
#pooja-progress-bar { height:100%; background:#22C55E; width:0%; transition: width 0.4s ease; }

/* Navigation */
#pooja-guide-nav { display:flex; justify-content: space-between; margin-top:1.5rem; }
#pooja-guide-nav button { background: rgba(34,197,94,0.1); color:#22C55E; font-weight:600; padding:0.6rem 1.2rem; border-radius:0.75rem; transition: all 0.3s ease; }
#pooja-guide-nav button:hover { background:#22C55E; color:#fff; }

/* Modal background */
#pooja-guide { background: rgba(0,0,0,0.85); }
#pooja-guide > div > button { color:#E5E7EB; transition: color 0.3s ease; }
#pooja-guide > div > button:hover { color:#22C55E; }

/* Mobile Responsive */
@media (max-width: 1024px) {
  #pooja-guide {
    align-items: flex-start;
    padding: 4vw;
  }
  #pooja-guide-sidebar {
    flex-direction: row;
    overflow-x: auto;
    min-width: 0;
  }
  #pooja-guide-sidebar button {
    white-space: nowrap;
    flex-shrink: 0;
  }
  #pooja-guide-content {
    max-height: 55vh;
  }
}


/* Sidebar identical to Living Room */
#office-guide-sidebar {
  background-color: #111827;
  padding: 1rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 280px;
  color: #E5E7EB;
  font-family: 'Inter', sans-serif;
}

#office-guide-sidebar button {
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background-color: transparent;
  color: #E5E7EB;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
#office-guide-sidebar button.active {
  border-left: 4px solid #22C55E;
  background-color: rgba(34,197,94,0.1);
  color: #22C55E;
}

/* Step Icons inside sidebar buttons */
#office-guide-sidebar .step-icon {
  height: 1.25rem;
  width: 1.25rem;
  flex-shrink: 0;
}

/* Content */
#office-guide-content {
  font-family: 'Inter', sans-serif;
  color: #E5E7EB;
  line-height: 1.8;
  font-size: 1rem;
}
#office-guide-content ul { margin-top: 0.5rem; margin-left: 1rem; }
#office-guide-content li { margin-bottom: 0.5rem; font-size: 0.98rem; color: #D1D5DB; }

/* Fade animation */
.fade-slide-up { animation: fadeSlideUp 0.4s ease forwards; opacity: 0; transform: translateY(20px);}
@keyframes fadeSlideUp { to { opacity:1; transform: translateY(0);} }

/* Progress Bar */
#office-progress-container { height:6px; background: rgba(255,255,255,0.1); border-radius:3px; overflow:hidden; margin-top:2rem; }
#office-progress-bar { height:100%; background:#22C55E; width:0%; transition: width 0.4s ease; }

/* Navigation */
#office-guide-nav { display:flex; justify-content: space-between; margin-top:1.5rem; }
#office-guide-nav button { background: rgba(34,197,94,0.1); color:#22C55E; font-weight:600; padding:0.6rem 1.2rem; border-radius:0.75rem; transition: all 0.3s ease; }
#office-guide-nav button:hover { background:#22C55E; color:#fff; }

/* Modal background */
#office-guide { background: rgba(0,0,0,0.85); }
#office-guide > div > button { color:#E5E7EB; transition: color 0.3s ease; }
#office-guide > div > button:hover { color:#22C55E; }

/* Mobile Responsive */
@media (max-width: 1024px) {
  #office-guide {
    align-items: flex-start;
    padding: 4vw;
  }
  #office-guide-sidebar {
    flex-direction: row;
    overflow-x: auto;
    min-width: 0;
  }
  #office-guide-sidebar button {
    white-space: nowrap;
    flex-shrink: 0;
  }
  #office-guide-content {
    max-height: 55vh;
  }
}

/* Sidebar identical to Wardrobe & Pooja */
#balcony-guide-sidebar {
  background-color: #111827;
  padding: 1rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 280px;
  color: #E5E7EB;
  font-family: 'Inter', sans-serif;
}

#balcony-guide-sidebar button {
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background-color: transparent;
  color: #E5E7EB;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
#balcony-guide-sidebar button.active {
  border-left: 4px solid #22C55E;
  background-color: rgba(34,197,94,0.1);
  color: #22C55E;
}

/* Content */
#balcony-guide-content {
  font-family: 'Inter', sans-serif;
  color: #E5E7EB;
  line-height: 1.8;
  font-size: 1rem;
}
#balcony-guide-content ul { margin-top: 0.5rem; margin-left: 1rem; }
#balcony-guide-content li { margin-bottom: 0.5rem; font-size: 0.98rem; color: #D1D5DB; }

/* Fade animation */
.fade-slide-up { animation: fadeSlideUp 0.4s ease forwards; opacity: 0; transform: translateY(20px);}
@keyframes fadeSlideUp { to { opacity:1; transform: translateY(0);} }

/* Progress Bar */
#balcony-progress-container { height:6px; background: rgba(255,255,255,0.1); border-radius:3px; overflow:hidden; margin-top:2rem; }
#balcony-progress-bar { height:100%; background:#22C55E; width:0%; transition: width 0.4s ease; }

/* Navigation */
#balcony-guide-nav { display:flex; justify-content: space-between; margin-top:1.5rem; }
#balcony-guide-nav button { background: rgba(34,197,94,0.1); color:#22C55E; font-weight:600; padding:0.6rem 1.2rem; border-radius:0.75rem; transition: all 0.3s ease; }
#balcony-guide-nav button:hover { background:#22C55E; color:#fff; }

/* Modal background */
#balcony-guide { background: rgba(0,0,0,0.85); }
#balcony-guide > div > button { color:#E5E7EB; transition: color 0.3s ease; }
#balcony-guide > div > button:hover { color:#22C55E; }

/* Mobile Responsive */
@media (max-width: 1024px) {
  #balcony-guide {
    align-items: flex-start;
    padding: 4vw;
  }
  #balcony-guide-sidebar {
    flex-direction: row;
    overflow-x: auto;
    min-width: 0;
  }
  #balcony-guide-sidebar button {
    white-space: nowrap;
    flex-shrink: 0;
  }
  #balcony-guide-content {
    max-height: 55vh;
  }
}

#confetti {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;  /* <-- make it full screen */
  pointer-events: none;
  overflow: visible;
  z-index: 9999;
}


.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  opacity: 0.7;
  transform: rotate(45deg);
  animation: fall linear forwards;
}

@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
  }
}
