/* ==========================================================================
   DIGITAL GROWTH SPARK - PHENOMENON STUDIO INTERACTIVE COMPONENTS
   No money / No currency figures - Focus on scope, services & project blueprints
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. SMART SEARCH & PROJECT MATCHER MODAL (PHENOMENON STUDIO SIGNATURE)
   -------------------------------------------------------------------------- */
.main-popup-wrap {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(8, 10, 17, 0.85);
  backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s var(--ease-phnmn);
}

.main-popup-wrap.active {
  display: flex;
  opacity: 1;
}

.popup-box {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-24);
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  position: relative;
  padding: 40px;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border-hairline);
  padding-bottom: 20px;
}

.popup-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-hairline);
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.25s ease;
}

.popup-close-btn:hover {
  background: var(--spark-gold);
  color: #080a11;
  border-color: var(--spark-gold);
}

/* --------------------------------------------------------------------------
   2. SMART PROJECT SCOPE & STRATEGY ESTIMATOR (100% NO MONEY)
   Interactive Project Blueprint Generator
   -------------------------------------------------------------------------- */
.scope-estimator-container {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-24);
  padding: 48px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.scope-estimator-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

.scope-options-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.scope-option-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scope-option-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.scope-pill-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.scope-pill-btn {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-hairline);
  color: var(--color-white-secondary);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease-phnmn);
}

.scope-pill-btn:hover,
.scope-pill-btn.active {
  background: var(--spark-gold);
  border-color: var(--spark-gold);
  color: #080a11;
  font-weight: 700;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(216, 156, 55, 0.3);
}

/* Blueprint Output Box */
.blueprint-output-box {
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-16);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.blueprint-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--spark-gold-light);
}

.blueprint-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.blueprint-deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deliverable-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--color-white-secondary);
  line-height: 1.45;
}

.deliverable-check-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--spark-gold);
}

.blueprint-timeline-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-12);
  border: 1px solid var(--border-hairline);
}

.timeline-tag {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--spark-gold-light);
}

/* --------------------------------------------------------------------------
   3. SHOWREEL VIDEO MODAL
   -------------------------------------------------------------------------- */
.showreel-modal-video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-16);
  background: #000000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
}

/* --------------------------------------------------------------------------
   4. CONSULTATION & AUDIT FORM
   -------------------------------------------------------------------------- */
.consultation-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.form-field {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-12);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #ffffff;
  outline: none;
  transition: all 0.25s ease;
}

.form-field:focus {
  border-color: var(--spark-gold);
  background: rgba(216, 156, 55, 0.05);
  box-shadow: 0 0 15px rgba(216, 156, 55, 0.2);
}

.form-field::placeholder {
  color: var(--color-white-tertiary);
}

textarea.form-field {
  resize: vertical;
  min-height: 110px;
}

/* --------------------------------------------------------------------------
   5. MOBILE SLIDE-OUT MENU DRAWER
   -------------------------------------------------------------------------- */
.mobile-drawer-wrap {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 17, 0.98);
  backdrop-filter: blur(24px);
  z-index: 99998;
  padding: 100px 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-phnmn);
}

.mobile-drawer-wrap.active {
  transform: translateX(0);
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-drawer-link {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer-link:hover {
  color: var(--spark-gold);
}

/* --------------------------------------------------------------------------
   6. TOAST NOTIFICATIONS
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: var(--bg-dark-secondary);
  border: 1px solid var(--border-gold);
  color: #ffffff;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: toastSlideUp 0.35s var(--ease-phnmn);
}

@keyframes toastSlideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .scope-estimator-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .scope-estimator-container {
    padding: 30px 20px;
  }

  .popup-box {
    padding: 24px 18px;
  }
}
