/* ==========================================================================
   SERVICES PAGE STYLES - FULL-SCREEN DYNAMIC THEMED SECTIONS
   ========================================================================== */

.services-hero-banner {
  background: var(--bg-emerald-deep);
  color: var(--text-primary-light);
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Full-Screen Service Section Base */
.service-theme-section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  padding: 6rem 0;
  transition: background-color 700ms ease, color 700ms ease;
  overflow: hidden;
}

/* Section Grid Layout */
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-grid.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-grid.reverse .service-content {
  order: 2;
}

.service-grid.reverse .service-visual {
  order: 1;
}

/* --- THEME 1: WEDDINGS & RECEPTION (Deep Emerald) --- */
.service-theme-wedding {
  background-color: #0B2B26;
  color: #FDFBF7;
}

.service-theme-wedding .service-desc {
  color: #C5D1CE;
}

.service-theme-wedding .feature-pill {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #F3E5AB;
}

/* --- THEME 2: DESI FUNCTIONS (Rich Terracotta & Gold) --- */
.service-theme-desi {
  background-color: #8C3B27;
  color: #FDFBF7;
}

.service-theme-desi .service-desc {
  color: #F5D7CE;
}

.service-theme-desi .eyebrow {
  color: #FFD700;
}

.service-theme-desi .feature-pill {
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid rgba(255, 215, 0, 0.35);
  color: #FFEFA6;
}

/* --- THEME 3: LIGHTING DESIGN (Midnight Luxe Navy) --- */
.service-theme-lighting {
  background-color: #091321;
  color: #FDFBF7;
}

.service-theme-lighting .service-desc {
  color: #B8C7E0;
}

.service-theme-lighting .feature-pill {
  background: rgba(138, 180, 248, 0.15);
  border: 1px solid rgba(138, 180, 248, 0.3);
  color: #D2E3FC;
}

/* --- THEME 4: FURNITURE & ACCESSORIES (Pearl Ivory) --- */
.service-theme-furniture {
  background-color: #FAF6F0;
  color: #121615;
}

.service-theme-furniture .section-title {
  color: #0B2B26;
}

.service-theme-furniture .service-desc {
  color: #4A5552;
}

.service-theme-furniture .feature-pill {
  background: rgba(11, 43, 38, 0.08);
  border: 1px solid rgba(11, 43, 38, 0.2);
  color: #0B2B26;
}

/* --- THEME 5: OTHER & CORPORATE EVENTS (Rich Charcoal) --- */
.service-theme-corporate {
  background-color: #1A1D20;
  color: #FDFBF7;
}

.service-theme-corporate .service-desc {
  color: #B2B8BE;
}

.service-theme-corporate .feature-pill {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #F3E5AB;
}

/* --- THEME 6: FULL SERVICE SETUP & CLEANUP (Royal Teal) --- */
.service-theme-fullservice {
  background-color: #063830;
  color: #FDFBF7;
}

.service-theme-fullservice .service-desc {
  color: #B9DCD6;
}

.service-theme-fullservice .feature-pill {
  background: rgba(212, 175, 55, 0.18);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #FFF2C6;
}

/* Visual Card & Image Frame */
.service-visual-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(212, 175, 55, 0.3);
  height: 480px;
}

.service-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-visual-frame:hover img {
  transform: scale(1.05);
}

/* Feature List Pills */
.service-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
}

.feature-pill svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Floating Navigation Dots Bar for Service Scroll */
.service-scroll-nav {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 100;
}

.service-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.service-dot.active {
  background: var(--gold-primary);
  transform: scale(1.3);
  box-shadow: 0 0 12px var(--gold-primary);
}

.service-dot-label {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(6, 31, 26, 0.9);
  color: var(--gold-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
  border: 1px solid var(--gold-primary);
}

.service-dot:hover .service-dot-label {
  opacity: 1;
}

/* Mobile & Tablet Responsive */
@media (max-width: 1024px) {
  .service-grid, .service-grid.reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .service-grid.reverse .service-content {
    order: 1;
  }

  .service-grid.reverse .service-visual {
    order: 2;
  }

  .service-theme-section {
    min-height: auto;
    padding: 4rem 0;
  }

  .service-visual-frame {
    height: 350px;
  }

  .service-scroll-nav {
    display: none;
  }
}
