/* ==========================================================================
   SS SOUND & EVENTS - Component Stylesheet
   Cards, Badges, Modals, Stats, Testimonials, FAQ Accordion, Forms, Lightbox,
   Audio Player & Vertical Volume Fader (DJ Saggy Style)
   ========================================================================== */

/* ─── Grid Utilities ───────────────────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .grid-4, .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .grid-5 {
    grid-template-columns: 1fr;
  }
}

/* ─── Hero Turntable & Audio Player Container ──────────────────── */
.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  width: 100%;
  max-width: 1000px;
}

/* Spotify-style Mini Player Card (Left of Hero Turntable) */
.vinyl-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 240px;
  margin: 14px auto;
  z-index: 10;
}

@media (min-width: 992px) {
  .vinyl-card {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    width: 230px;
  }
}

@media (min-width: 1200px) {
  .vinyl-card {
    left: 80px;
  }
}

.vinyl-card-box {
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 107, 26, 0.1);
  width: 100%;
}

.vc-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
}

.vc-track-info {
  flex: 1;
  min-width: 0;
}

.vc-track-name {
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.3px;
}

.vc-track-artist {
  font-size: 0.72rem;
  color: var(--orange);
  margin-top: 1px;
  font-weight: 500;
}

.vc-heart {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-dim);
  font-size: 0.95rem;
  transition: color 0.2s, transform 0.2s;
  padding: 4px;
}

.vc-heart:hover, .vc-heart.liked {
  color: #FF4757;
  transform: scale(1.2);
}

.vc-progress {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vc-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.vc-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  border-radius: 2px;
  transition: width 0.1s linear;
}

.vc-times {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-family: monospace;
}

.vc-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.vc-ctrl-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 4px;
  transition: color 0.15s, transform 0.15s;
}

.vc-ctrl-btn:hover {
  color: #fff;
  transform: scale(1.15);
}

.vc-play-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 0.95rem;
  box-shadow: 0 0 16px rgba(255, 107, 26, 0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}

.vc-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(255, 107, 26, 0.8);
}

.vc-play-btn .fa-pause {
  display: none;
}

.vc-play-btn.playing .fa-play {
  display: none;
}

.vc-play-btn.playing .fa-pause {
  display: block;
}

/* ─── Vertical DJ Volume Fader (Right of Hero Turntable) ───────── */
.vol-knob {
  display: none;
}

@media (min-width: 992px) {
  .vol-knob {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
}

@media (min-width: 1200px) {
  .vol-knob {
    right: 80px;
  }
}

.vol-knob-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.vol-knob-housing {
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
}

/* Tick marks left and right of track */
.vol-knob-housing::before,
.vol-knob-housing::after {
  content: '';
  position: absolute;
  top: 16px;
  bottom: 16px;
  width: 3px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.25) 0px,
    rgba(255, 255, 255, 0.25) 1px,
    transparent 1px,
    transparent 12px
  );
  border-radius: 1px;
}

.vol-knob-housing::before { left: 6px; }
.vol-knob-housing::after  { right: 6px; }

.vol-knob-track {
  width: 8px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  position: relative;
  cursor: pointer;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6);
  user-select: none;
}

.vol-knob-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(to top, var(--orange), var(--gold));
  border-radius: 4px;
  pointer-events: none;
  transition: height 50ms linear;
  box-shadow: 0 0 12px rgba(255, 107, 26, 0.6);
}

.vol-knob-thumb {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 50%);
  bottom: 70%;
  width: 34px;
  height: 22px;
  border-radius: 4px;
  background: linear-gradient(180deg, #E6E6E6 0%, #B0B0B0 50%, #D4D4D4 100%);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.8),
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 -1px 0 rgba(0, 0, 0, 0.4) inset;
  pointer-events: none;
  transition: bottom 50ms linear;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.vol-knob-thumb::before,
.vol-knob-thumb::after {
  content: '';
  display: block;
  width: 1px;
  height: 12px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1px;
}

.vol-knob-thumb-mid {
  width: 2px;
  height: 14px;
  background: var(--orange);
  border-radius: 1px;
  pointer-events: none;
}

.vol-knob-pct {
  font-size: 0.75rem;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
}

/* Floating Audio Control Widget (Persistent on all pages) */
.float-audio-pill {
  position: fixed;
  bottom: 28px;
  left: 24px;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-full);
  padding: 8px 18px 8px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), var(--glow-orange);
  transition: transform 0.2s var(--ease-out);
}

.float-audio-pill:hover {
  transform: translateY(-2px);
}

.float-audio-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  border: none;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.float-audio-btn:hover {
  transform: scale(1.1);
}

.float-audio-btn .fa-pause {
  display: none;
}

.float-audio-btn.playing .fa-play {
  display: none;
}

.float-audio-btn.playing .fa-pause {
  display: block;
}

.float-audio-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.float-audio-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.float-audio-sub {
  font-size: 0.65rem;
  color: var(--orange);
  font-weight: 500;
}

.float-vol-slider {
  width: 60px;
  height: 4px;
  accent-color: var(--orange);
  cursor: pointer;
}

@media (max-width: 640px) {
  .float-audio-pill {
    bottom: 20px;
    left: 16px;
    padding: 6px 12px 6px 8px;
  }
  .float-vol-slider {
    display: none;
  }
}

/* ─── Stats / Counters Section ─────────────────────────────────── */
.stats-section {
  background: linear-gradient(180deg, #0A0A0A 0%, #111111 50%, #0A0A0A 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  position: relative;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.stats-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--glow-orange);
}

.stats-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(255, 107, 26, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.stats-card:hover .stats-icon {
  transform: scale(1.15) rotate(10deg);
  background: var(--orange);
  color: #fff;
}

.stats-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stats-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ─── Service Cards ────────────────────────────────────────────── */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.35s var(--ease-out);
  position: relative;
  box-shadow: var(--card-shadow);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), var(--glow-orange);
}

.service-img-box {
  position: relative;
  width: 100%;
  padding-top: 60%;
  overflow: hidden;
  background: #181818;
}

.service-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 107, 26, 0.4);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  z-index: 2;
}

.service-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  line-height: 1.3;
  transition: color 0.2s;
}

.service-title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.service-title a:hover {
  color: var(--orange);
}

.service-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 26, 0.12);
  border: 1px solid rgba(255, 107, 26, 0.28);
  color: var(--orange);
  font-size: 1.2rem;
  margin-bottom: 14px;
  transition: all 0.3s var(--ease-out);
}

.service-card:hover .service-icon-box {
  background: var(--orange);
  color: #ffffff;
  border-color: var(--orange);
  box-shadow: 0 4px 18px rgba(255, 107, 26, 0.45);
  transform: translateY(-2px);
}

.service-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  padding: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.service-feature-list li i {
  color: var(--orange);
  font-size: 0.85rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.service-feature-list li strong {
  color: #ffffff;
  font-weight: 600;
}

.service-pill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.service-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 26, 0.08);
  border: 1px solid rgba(255, 107, 26, 0.22);
  color: #f0f0f0;
  padding: 4px 11px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.3;
  transition: all 0.2s ease;
}

.service-card:hover .service-tag-pill {
  border-color: rgba(255, 107, 26, 0.45);
  background: rgba(255, 107, 26, 0.14);
  color: #ffffff;
}

.service-tag-pill i {
  color: var(--orange);
  font-size: 0.68rem;
}

.services-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.services-catalog-grid .service-card-wide {
  grid-column: span 2;
  display: flex;
  flex-direction: row;
}

.services-catalog-grid .service-card-wide .service-img-box {
  width: 40%;
  padding-top: 0;
  min-height: 280px;
  flex-shrink: 0;
}

.services-catalog-grid .service-card-wide .service-body {
  width: 60%;
}

@media (max-width: 992px) {
  .services-catalog-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .services-catalog-grid .service-card-wide {
    grid-column: span 1;
    flex-direction: column;
  }
  .services-catalog-grid .service-card-wide .service-img-box {
    width: 100%;
    padding-top: 52%;
    min-height: auto;
  }
  .services-catalog-grid .service-card-wide .service-body {
    width: 100%;
  }
}

.services-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.services-grid-home .service-card-wide {
  grid-column: span 3;
  display: flex;
  flex-direction: row;
}

.services-grid-home .service-card-wide .service-img-box {
  width: 38%;
  padding-top: 0;
  min-height: 280px;
  flex-shrink: 0;
}

.services-grid-home .service-card-wide .service-body {
  width: 62%;
}

@media (max-width: 1024px) {
  .services-grid-home {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid-home .service-card-wide {
    grid-column: span 2;
    flex-direction: column;
  }
  .services-grid-home .service-card-wide .service-img-box {
    width: 100%;
    padding-top: 55%;
    min-height: auto;
  }
  .services-grid-home .service-card-wide .service-body {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .services-grid-home {
    grid-template-columns: 1fr;
  }
  .services-grid-home .service-card-wide {
    grid-column: span 1;
  }
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  transition: gap 0.2s, color 0.2s;
}

.service-btn:hover {
  gap: 12px;
  color: var(--gold);
}

/* ─── Filter Tabs ──────────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 10px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-tab:hover {
  border-color: var(--border-hover);
  color: #fff;
  background: var(--bg-card-hover);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dim) 100%);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 107, 26, 0.4);
}

/* ─── About Story & Split Feature ──────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
}

.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  border: 2px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--glow-orange);
}

.exp-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.exp-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 28px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 107, 26, 0.12);
  border: 1px solid rgba(255, 107, 26, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.feature-info h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.feature-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── Video Showcase Grid ──────────────────────────────────────── */
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--card-shadow);
  cursor: pointer;
  transition: all 0.3s;
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--glow-orange);
}

.video-thumb-box {
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}

.video-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.video-card:hover .video-thumb {
  transform: scale(1.06);
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.video-play-btn {
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 25px rgba(255, 107, 26, 0.8);
  transition: transform 0.3s, background 0.2s;
}

.video-card:hover .video-play-btn {
  transform: scale(1.15);
  background: var(--amber);
}

.video-caption {
  margin-top: auto;
}

.video-caption h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.video-caption p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ─── Testimonials Showcase ────────────────────────────────────── */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all 0.3s;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--glow-orange);
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.quote-text {
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.client-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}

.client-details h5 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.client-details span {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 500;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: #25D366;
  margin-left: auto;
}

/* ─── FAQ Accordion ────────────────────────────────────────────── */
.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s;
}

.faq-item:hover, .faq-item.active {
  border-color: var(--border-hover);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq-question h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0;
  transition: color 0.2s;
}

.faq-item.active .faq-question h4 {
  color: var(--orange);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Gallery Grid & Lightbox ──────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: #141414;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  gap: 10px;
  padding: 16px;
  text-align: center;
}

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

.gallery-zoom-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.gallery-caption {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(16px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--orange);
}

/* ─── Contact Form & Quotation Calculator ──────────────────────── */
.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--card-shadow);
  position: relative;
}

@media (max-width: 768px) {
  .quote-card {
    padding: 24px;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: #fff;
  font-size: 0.92rem;
  transition: border-color 0.2s, background 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 107, 26, 0.05);
  box-shadow: 0 0 12px rgba(255, 107, 26, 0.25);
}

.form-control::placeholder {
  color: var(--text-dim);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23FF6B1A' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 16px) center;
  padding-right: 40px;
}

.form-select option {
  background: #181818;
  color: #fff;
}

/* Contact Info Cards */
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s;
}

.contact-info-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--glow-orange);
}

.contact-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 107, 26, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-info-card p, .contact-info-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-info-card a:hover {
  color: var(--orange);
}

/* ─── CTA Banner ───────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #181818 0%, #0F0F0F 50%, #1A0D07 100%);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow-orange-lg);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), var(--gold), transparent);
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}

/* ─── Service Detail Specs Layout ──────────────────────────────── */
.service-detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .service-detail-layout {
    grid-template-columns: 1fr;
  }
}

.service-main-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.service-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}

.spec-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.spec-item i {
  color: var(--orange);
  font-size: 1.2rem;
}

.spec-text h5 {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 2px;
}

.spec-text span {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.sidebar-widget h4 {
  font-size: 1.15rem;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.sidebar-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.services-list-widget {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-list-widget a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text);
  transition: all 0.2s;
}

.services-list-widget a:hover, .services-list-widget a.active {
  background: var(--orange);
  color: #fff;
  transform: translateX(4px);
}

.services-list-widget a i {
  font-size: 0.75rem;
}
