/* ==========================================================================
   Kasb-e-Kamaal - 1:1 Pixel-Exact About Us Page Styles
   100% Mockup Matched | Elementor Builder Friendly & Fully Responsive
   ========================================================================== */

:root {
  --k-forest-dark: #0a3821;
  --k-forest-btn: #0d4029;
  --k-forest-btn-hover: #135537;
  --k-terracotta: #7d3d1f;
  --k-script-olive: #4e7d65;
  --k-cream-bg: #f6f4ee;
  --k-cream-pillars: #faf9f5;
  --k-cream-badge: #edeae0;
  --k-border-subtle: #e8e4da;
  --k-text-dark: #222222;
  --k-text-body: #2e3b33;
  --k-text-muted: #555555;
  --k-text-desc: #4b5563;
  --font-serif: 'Playfair Display', 'Cinzel', Georgia, serif;
  --font-script: 'Caveat', 'Alex Brush', cursive;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ==========================================================================
   SECTION 1: HERO & MEDIA SHOWCASE
   ========================================================================== */
.about-hero-section {
  background-color: var(--k-cream-bg);
  position: relative;
  overflow: hidden;
  padding: 22px 0 26px 0;
  width: 100%;
}

.about-leaf-overlay-left {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  max-width: 110px;
  object-fit: contain;
  object-position: left top;
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}

.about-hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1.05fr;
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Intro Column */
.about-hero-intro-col {
  padding-left: 28px;
}

.about-breadcrumb-bar {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--k-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.about-breadcrumb-bar a {
  color: var(--k-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.about-breadcrumb-bar a:hover {
  color: var(--k-forest-dark);
}

.about-breadcrumb-icon {
  font-size: 13px;
  line-height: 1;
}

.about-hero-main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--k-forest-dark);
  margin: 0 0 4px 0;
  letter-spacing: -0.4px;
}

.about-hero-script-lines {
  font-family: var(--font-script);
  font-size: 23px;
  font-weight: 700;
  color: var(--k-script-olive);
  line-height: 1.15;
  margin-bottom: 12px;
}

.about-hero-script-lines span {
  display: block;
}

.about-hero-body-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.55;
  color: var(--k-text-body);
  max-width: 360px;
  margin: 0;
}

/* Center Video Showcase */
.about-hero-video-box {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  background-color: #000000;
  aspect-ratio: 16/9.2;
}

.about-hero-video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.16);
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.about-play-icon-circle {
  width: 44px;
  height: 44px;
  background: rgba(10, 56, 33, 0.88);
  border: 2px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #ffffff;
  margin-bottom: 6px;
  transition: transform 0.2s, background 0.2s;
}

.about-video-play-overlay:hover .about-play-icon-circle {
  transform: scale(1.08);
  background: rgba(13, 64, 41, 0.96);
}

.about-video-caption-text {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

.about-video-bottom-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  padding: 4px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  font-size: 11px;
  font-family: monospace;
}

/* Right 2x2 Thumbnails Grid */
.about-hero-thumbs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.about-thumb-card {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
  aspect-ratio: 16/10;
}

.about-thumb-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.about-thumb-card:hover img {
  transform: scale(1.04);
}


/* ==========================================================================
   SECTION 2: MISSION, VISION, VALUES & CTA BANNER
   ========================================================================== */
.about-mvv-section {
  background-color: var(--k-cream-pillars);
  border-top: 1px solid var(--k-border-subtle);
  border-bottom: 1px solid var(--k-border-subtle);
  padding: 20px 0;
  width: 100%;
}

.about-mvv-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-mvv-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.1fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.about-mvv-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.about-mvv-icon-badge {
  width: 44px;
  height: 44px;
  background-color: var(--k-forest-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  flex-shrink: 0;
}

.about-mvv-icon-badge svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

.about-mvv-content h3 {
  font-family: var(--font-serif);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--k-forest-dark);
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.about-mvv-content p {
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.45;
  color: var(--k-text-desc);
  margin: 0;
}

/* Values 2-Column Checklist */
.about-values-list-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 8px;
  margin-top: 2px;
}

.about-val-item {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--k-text-body);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.about-val-item .val-leaf-icon {
  color: var(--k-script-olive);
  font-size: 10px;
}

/* Support CTA Box Card */
.about-support-cta-card {
  background-color: #ffffff;
  border: 1px solid var(--k-border-subtle);
  border-radius: 6px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.about-support-cta-card .cta-top-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-support-cta-card .cta-top-row .cta-leaf-svg {
  font-size: 18px;
  flex-shrink: 0;
}

.about-support-cta-card .cta-top-row h4 {
  font-family: var(--font-serif);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--k-text-dark);
  margin: 0;
  line-height: 1.25;
}

.btn-about-support-cause {
  background-color: var(--k-forest-btn);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-about-support-cause:hover {
  background-color: var(--k-forest-btn-hover);
  color: #ffffff;
  transform: translateY(-1px);
}


/* ==========================================================================
   SECTION 3: OUR IMPACT SO FAR (6 STATS BAR)
   ========================================================================== */
.about-impact-section {
  background-color: var(--k-cream-pillars);
  padding: 18px 0 22px 0;
  border-bottom: 1px solid var(--k-border-subtle);
  width: 100%;
}

.about-impact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-impact-title-header {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--k-forest-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.about-impact-title-header .flourish-icon {
  color: var(--k-script-olive);
  font-size: 14px;
}

.about-impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.about-impact-stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 10px;
  position: relative;
}

.about-impact-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background-color: var(--k-border-subtle);
}

.about-impact-stat-icon {
  width: 38px;
  height: 38px;
  background-color: var(--k-cream-badge);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--k-forest-dark);
  flex-shrink: 0;
}

.about-impact-stat-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--k-forest-dark);
}

.about-impact-stat-text {
  display: flex;
  flex-direction: column;
}

.about-impact-stat-num {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--k-forest-dark);
  line-height: 1.1;
}

.about-impact-stat-lbl {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--k-text-muted);
  line-height: 1.25;
}


/* ==========================================================================
   SECTION 4: OUR STORY & TIMELINE GALLERY
   ========================================================================== */
.about-story-section {
  background-color: var(--k-cream-bg);
  padding: 24px 0 30px 0;
  width: 100%;
}

.about-story-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 18px;
  align-items: center;
}

.about-story-text-col h3 {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--k-forest-dark);
  margin: 0 0 4px 0;
  line-height: 1.1;
}

.about-story-text-col .story-vine-icon {
  color: var(--k-script-olive);
  font-size: 12px;
  margin-bottom: 6px;
  display: block;
}

.about-story-text-col p {
  font-family: var(--font-sans);
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--k-text-body);
  margin: 0;
}

.about-story-gallery-grid {
  display: grid;
  grid-template-columns: 124px 124px 128px 128px 1fr;
  gap: 8px;
  align-items: stretch;
}

.about-story-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
}

.about-story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story-pill-badge {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(10, 56, 33, 0.9);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  white-space: nowrap;
}

/* Story Video Card */
.about-story-video-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
  background-color: #000000;
}

.about-story-video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ==========================================================================
   RESPONSIVE DESIGN (Tablets & Mobile)
   ========================================================================== */
@media (max-width: 1180px) {
  .about-hero-container {
    grid-template-columns: 1fr 1fr;
  }
  .about-hero-intro-col {
    padding-left: 0;
    grid-column: span 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about-hero-body-desc {
    max-width: 600px;
  }
  .about-mvv-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 20px;
  }
  .about-impact-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 16px;
  }
  .about-impact-stat-item:nth-child(3)::after {
    display: none;
  }
  .about-story-container {
    grid-template-columns: 1fr;
  }
  .about-story-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 12px;
  }
}

@media (max-width: 768px) {
  .about-hero-container {
    grid-template-columns: 1fr;
  }
  .about-hero-intro-col {
    grid-column: span 1;
  }
  .about-mvv-grid {
    grid-template-columns: 1fr;
  }
  .about-impact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 14px;
  }
  .about-impact-stat-item::after {
    display: none;
  }
  .about-story-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .about-impact-stats-grid {
    grid-template-columns: 1fr;
  }
  .about-story-gallery-grid {
    grid-template-columns: 1fr;
  }
}
