/* ==========================================================================
   PROJECT: CLEAR SKY TRAVEL AND TOURS — DELIVERY REPORT & VISUAL SUITE
   File: css/Clearskytravelandtours.css
   Tech Steward Digital AI — Joyce Yap Portfolio
   ========================================================================== */

/* Theme container accent when viewing Clear Sky Travel and Tours */
.theme-travel-launch .pdetail-header-card::before {
  background: linear-gradient(90deg, #00d2ff, #3a7bd5, #92d14f);
}

/* ==========================================================================
   CLEAR SKY DELIVERY REPORT TABS BAR
   ========================================================================== */
.report-tabs-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding: 8px;
  background: rgba(10, 18, 42, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  margin-bottom: 34px;
  backdrop-filter: blur(16px);
  scrollbar-width: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.report-tabs-bar::-webkit-scrollbar {
  display: none;
}

.report-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-sublight);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s var(--spring-bounce);
}
.report-tab-btn i {
  font-size: 0.95rem;
}
.report-tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}
.report-tab-btn.active {
  background: linear-gradient(135deg, rgba(146, 209, 79, 0.22) 0%, rgba(0, 210, 255, 0.16) 100%);
  border-color: var(--lime);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(146, 209, 79, 0.25);
}

.report-pane {
  display: none;
  animation: reportFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.report-pane.active {
  display: block;
}
@keyframes reportFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   SPLIT GRID & REPORT CARD CONTAINER
   ========================================================================== */
.report-split-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.report-card {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-glass-light);
  border-radius: 24px;
  padding: 32px 28px;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45);
  position: relative;
}

/* ==========================================================================
   INTERACTIVE IMAGE CARDS
   ========================================================================== */
.report-img-card {
  background: rgba(6, 12, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  margin-bottom: 18px;
}
.report-img-card:last-child {
  margin-bottom: 0;
}
.report-img-card:hover {
  transform: translateY(-4px);
  border-color: var(--lime);
  box-shadow: 0 18px 45px rgba(146, 209, 79, 0.24);
}
.report-img-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}
.report-img-card:hover img {
  transform: scale(1.02);
}
.report-img-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(4, 9, 26, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 2;
}
.report-img-card:hover .report-img-badge {
  background: var(--lime);
  color: var(--bg-base);
  border-color: var(--lime);
  box-shadow: 0 0 15px var(--lime-glow);
}
.report-img-caption {
  padding: 12px 18px;
  background: rgba(8, 15, 36, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.report-img-caption span.tag {
  color: var(--lime);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
}

/* ==========================================================================
   DELIVERABLE HEADINGS & LISTS
   ========================================================================== */
.report-section-title {
  font-family: var(--font-headline);
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.report-section-title i {
  color: var(--lime);
}
.report-subtitle {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-glow);
  margin-bottom: 20px;
}

.report-list-heading {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin: 20px 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.report-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.report-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  line-height: 1.62;
  color: var(--text-sublight);
}
.report-bullet-item i {
  color: var(--lime);
  margin-top: 4px;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ==========================================================================
   TEMPLATES 2X2 GRID
   ========================================================================== */
.report-template-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 24px;
}

/* ==========================================================================
   7 CONCEPTS INTERACTIVE SELECTOR & HERO SHOWCASE
   ========================================================================== */
.concepts-selector-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.concept-pill-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-sublight);
  cursor: pointer;
  transition: all 0.3s;
}
.concept-pill-btn:hover {
  background: rgba(146, 209, 79, 0.12);
  color: #ffffff;
  border-color: rgba(146, 209, 79, 0.4);
}
.concept-pill-btn.active {
  background: var(--lime);
  color: var(--bg-base);
  border-color: var(--lime);
  font-weight: 700;
  box-shadow: 0 0 16px var(--lime-glow);
}

.concept-hero-showcase {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 26px;
  align-items: stretch;
  margin-bottom: 28px;
}
.concept-hero-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid rgba(146, 209, 79, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  background: #020714;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.concept-hero-img-wrap img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease, opacity 0.2s ease;
}
.concept-hero-img-wrap:hover img {
  transform: scale(1.02);
}

/* ==========================================================================
   DELIVERY TABLE
   ========================================================================== */
.report-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 18px;
  background: rgba(6, 12, 28, 0.6);
}
.report-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  text-align: left;
}
.report-table th {
  background: rgba(146, 209, 79, 0.14);
  color: var(--lime);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.report-table td {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-sublight);
}
.report-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.report-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(146, 209, 79, 0.14);
  border: 1px solid rgba(146, 209, 79, 0.4);
  color: var(--lime);
  white-space: nowrap;
}

/* ==========================================================================
   SIGN-OFF CERTIFICATE BOX
   ========================================================================== */
.signoff-card {
  background: linear-gradient(135deg, rgba(14, 25, 56, 0.95) 0%, rgba(6, 12, 28, 0.98) 100%);
  border: 1.5px solid rgba(146, 209, 79, 0.45);
  border-radius: 24px;
  padding: 36px 32px;
  margin-top: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(146, 209, 79, 0.06);
  position: relative;
}
.signoff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}
.signoff-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(146, 209, 79, 0.35);
  border-radius: 16px;
  padding: 20px 22px;
}
.signoff-role {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin-bottom: 6px;
}
.signoff-name {
  font-family: var(--font-headline);
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.signoff-title {
  font-size: 0.85rem;
  color: var(--text-sublight);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (CLEAR SKY)
   ========================================================================== */
@media (max-width: 860px) {
  .report-split-grid,
  .concept-hero-showcase {
    grid-template-columns: 1fr;
  }
  .report-template-grid {
    grid-template-columns: 1fr;
  }
  .signoff-grid {
    grid-template-columns: 1fr;
  }
}
