/* ═══════════════════════════════════════════════════════════
   KnowYourGujarat — UPLOAD A PHOTO SHOWCASE & IMPACT SECTION
   Exact Reference Design Specification:
   - Left: Content, Cursive quote, 3-step pills, Action CTA
   - Right: Sleek Smartphone Frame + Angled floating Photo Card with Green Check
   - Bottom: 4-Pillar Community Impact Card Strip
   - Clean white canvas with light architectural watermark
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* ── Unified Stage for Upload Showcase & Mission ── */
.upload-mission-unified-stage {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  overflow: hidden;
  border-top: 1px solid #F1F5F9;
}

.unified-stage-bg-lineart {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.13;
  mix-blend-mode: multiply;
  user-select: none;
}

.unified-stage-bg-lineart picture {
  display: contents;
}

.unified-stage-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.05);
  pointer-events: none;
}

.upload-showcase-section {
  position: relative;
  width: 100%;
  background: transparent !important;
  padding: 80px 0 60px;
  overflow: visible;
  border-top: none;
  border-bottom: none;
  z-index: 2;
}

/* ── Container ── */
.upload-showcase-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* ─────────────────────────────────────────────────────────── */
/*  UPPER 2-COLUMN SHOWCASE GRID                               */
/* ─────────────────────────────────────────────────────────── */
.upload-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

/* ── Left Content Column ── */
.upload-content-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Badge */
.upload-badge-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.upload-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF7A00;
}

.upload-badge-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  color: #FF7A00;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Tricolor Line */
.upload-tricolor-line {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 22px;
}

.tricolor-saffron {
  width: 32px;
  height: 3px;
  background: #FF7A00;
  border-radius: 2px;
}

.tricolor-blue {
  width: 32px;
  height: 3px;
  background: #0A4FCD;
  border-radius: 2px;
}

.tricolor-green {
  width: 32px;
  height: 3px;
  background: #16A34A;
  border-radius: 2px;
}

/* Main Headline */
.upload-main-headline {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #0A1C3E;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0 0 12px;
}

/* Cursive Sub-headline */
.upload-script-sub {
  font-family: 'Caveat', cursive;
  font-size: 32px;
  font-weight: 700;
  color: #0A1C3E;
  line-height: 1.2;
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}

/* Description */
.upload-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #334155;
  font-weight: 450;
  max-width: 500px;
  margin: 0 0 32px;
}

/* 3-Step Horizontal Process Row */
.upload-steps-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.upload-step-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #EEF4FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.step-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #0A1C3E;
  line-height: 1.2;
}

.step-subtitle {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #64748B;
  line-height: 1.2;
}

/* Action Row */
.upload-action-row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-upload-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  background: #0A1C3E;
  color: #FFFFFF !important;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(10, 28, 62, 0.18);
  transition: all 0.2s ease;
}

.btn-upload-primary:hover {
  background: #081630;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 28, 62, 0.28);
}

.link-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0A1C3E;
  text-decoration: none;
  transition: all 0.2s ease;
}

.link-learn-more:hover {
  color: #0A4FCD;
  transform: translateX(3px);
}

/* ─────────────────────────────────────────────────────────── */
/*  RIGHT VISUAL COLUMN (SMARTPHONE + FLOATING PHOTO CARD)     */
/* ─────────────────────────────────────────────────────────── */
.upload-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-mockup-wrapper {
  position: relative;
  display: inline-block;
}

/* Smartphone Frame */
.phone-chassis {
  width: 280px;
  height: 520px;
  background: #1E293B;
  border-radius: 42px;
  padding: 10px;
  box-shadow: 0 25px 65px rgba(10, 28, 62, 0.16), 0 0 0 2px #334155;
  display: flex;
  flex-direction: column;
}

/* Screen Shell */
.phone-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px 4px;
  background: #FFFFFF;
  border-radius: 32px 32px 0 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #0F172A;
}

.phone-notch {
  width: 70px;
  height: 18px;
  background: #1E293B;
  border-radius: 10px;
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #0F172A;
}

/* Phone App Interior */
.phone-app-body {
  background: #FFFFFF;
  flex: 1;
  border-radius: 0 0 32px 32px;
  padding: 12px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.phone-app-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #F1F5F9;
}

.phone-app-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #0A1C3E;
}

/* Dropzone */
.phone-dropzone {
  border: 1.5px dashed #CBD5E1;
  border-radius: 12px;
  padding: 16px 8px;
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.phone-drop-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: #0A1C3E;
}

.phone-drop-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9.5px;
  color: #64748B;
}

/* Form Fields */
.phone-form-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.phone-field-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.phone-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  color: #334155;
}

.phone-input-mock {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 6px 10px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9.5px;
  color: #94A3B8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Phone Submit Button */
.phone-submit-btn {
  background: #0A1C3E;
  color: #FFFFFF;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
}

/* Floating Overlapping Photo Card */
.floating-photo-card {
  position: absolute;
  right: -55px;
  bottom: 25px;
  width: 220px;
  height: 270px;
  border-radius: 18px;
  background: #FFFFFF;
  padding: 6px;
  box-shadow: 0 20px 50px rgba(10, 28, 62, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: rotate(7deg);
  z-index: 5;
  transition: transform 0.3s ease;
}

.floating-photo-card:hover {
  transform: rotate(4deg) scale(1.03);
}

.floating-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.photo-card-check {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #16A34A;
  border: 2px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.35);
  z-index: 10;
}

/* ─────────────────────────────────────────────────────────── */
/*  LOWER 4-PILLAR COMMUNITY IMPACT STRIP                      */
/* ─────────────────────────────────────────────────────────── */
.impact-pillars-strip {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 28px 32px;
  box-shadow: 0 6px 25px rgba(10, 28, 62, 0.03);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

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

.pillar-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon-wrap.icon-blue {
  background: #EEF4FF;
}

.pillar-icon-wrap.icon-green {
  background: #ECFDF5;
}

.pillar-icon-wrap.icon-orange {
  background: #FFF7ED;
}

.pillar-icon-wrap.icon-emerald {
  background: #F0FDF4;
}

.pillar-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pillar-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0A1C3E;
  margin: 0;
  line-height: 1.25;
}

.pillar-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: #475569;
  margin: 0;
}

/* ── Responsive Breakpoints ── */
@media (max-width: 1140px) {
  .upload-showcase-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .upload-content-col {
    align-items: center;
    text-align: center;
  }
  .upload-desc {
    max-width: 600px;
  }
  .upload-steps-row {
    justify-content: center;
  }
  .impact-pillars-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .upload-showcase-section {
    padding: 50px 0 45px;
  }
  .upload-main-headline {
    font-size: 34px;
  }
  .upload-script-sub {
    font-size: 26px;
  }
  .upload-steps-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .upload-action-row {
    flex-direction: column;
    width: 100%;
  }
  .btn-upload-primary {
    width: 100%;
    justify-content: center;
  }
  .floating-photo-card {
    width: 170px;
    height: 210px;
    right: -25px;
    bottom: 20px;
  }
  .phone-chassis {
    width: 250px;
    height: 480px;
  }
  .impact-pillars-strip {
    grid-template-columns: 1fr;
    padding: 20px;
  }
}
