/* ═══════════════════════════════════════════
   ABOUT PAGE — page-specific styles only
═══════════════════════════════════════════ */

/* ── PAGE HERO BANNER ── */
.page-hero .page-hero-bg {
  background-image: url('../images/about-hero-bg.jpg');
}

/* ── ABOUT INTRO ── */
.about-intro { background: var(--cream); padding: 90px 0 80px; position: relative; overflow: hidden; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.about-intro-images { position: relative; height: 500px; }
.about-img-a { position: absolute; top: 0; left: 0; width: 220px; height: 370px; border-radius: 110px 110px 6px 110px; object-fit: cover; box-shadow: 0 20px 60px rgba(26,60,42,0.18); z-index: 2; background: linear-gradient(135deg,#1A3C2A,#2d6e4a); }
.about-img-b { position: absolute; top: 90px; left: 170px; width: 210px; height: 340px; border-radius: 110px 110px 110px 6px; object-fit: cover; box-shadow: 0 20px 60px rgba(26,60,42,0.15); z-index: 2; background: linear-gradient(135deg,#E8820C,#c86e00); }
.about-badge { position: absolute; bottom: 30px; left: 20px; background: var(--brown); border-radius: 16px; padding: 20px 28px; z-index: 3; box-shadow: 0 8px 30px rgba(232,130,12,0.35); display: flex; align-items: center; gap: 16px; }
.about-badge-number { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1; }
.about-badge-label { font-size: 0.78rem; color: rgba(255,255,255,0.88); font-weight: 700; letter-spacing: 0.5px; line-height: 1.5; text-transform: uppercase; }
.about-intro-text .script-tag { font-size: 1.5rem; }
.about-tag { display: inline-block; background: var(--cream-dark); border: 1px solid rgba(232,130,12,0.3); color: var(--brown); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 14px; }
.about-body { font-size: 1rem; line-height: 1.9; color: var(--text-body); margin-bottom: 18px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0 32px; }
.highlight-item { display: flex; align-items: flex-start; gap: 10px; }
.highlight-icon { width: 36px; height: 36px; background: var(--cream-dark); border: 1.5px solid rgba(232,130,12,0.25); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.highlight-icon svg { width: 18px; height: 18px; fill: var(--brown); }
.highlight-text { font-size: 0.88rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; padding-top: 4px; }

/* ── QUOTE BANNER ── */
.quote-banner { position: relative; padding: 100px 0; overflow: hidden; background: var(--brown-dark); }
.quote-banner-bg { position: absolute; inset: 0; background-image: url('../images/quote-banner-bg.jpg'); background-size: cover; background-position: center; z-index: 0; }
.quote-banner-overlay { position: absolute; inset: 0; background: rgba(26,60,42,0.82); z-index: 1; }
.quote-banner-content { position: relative; z-index: 2; text-align: center; max-width: 820px; margin: 0 auto; padding: 0 40px; }
.quote-mark { font-family: 'Playfair Display', serif; font-size: 6rem; color: var(--gold); line-height: 0.5; margin-bottom: 20px; display: block; opacity: 0.6; }
.quote-text { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; color: var(--white); line-height: 1.35; margin-bottom: 24px; }
.quote-sub { font-size: 1rem; color: rgba(255,255,255,0.75); font-family: 'Lato', sans-serif; font-weight: 300; letter-spacing: 0.5px; }

/* ── MISSION / VISION / COMMITMENT ── */
.mvc-section { background: var(--cream-dark); padding: 90px 0; position: relative; overflow: hidden; }
.mvc-header { text-align: center; margin-bottom: 52px; }
.mvc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.mvc-card { background: var(--white); border-radius: 16px; padding: 40px 32px; text-align: center; box-shadow: 0 8px 32px rgba(26,60,42,0.08); border-top: 4px solid transparent; transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; }
.mvc-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--brown); transform: scaleX(0); transition: transform 0.3s; }
.mvc-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(26,60,42,0.14); }
.mvc-card:hover::before { transform: scaleX(1); }
.mvc-card:nth-child(1) { border-top-color: var(--brown-dark); }
.mvc-card:nth-child(2) { border-top-color: var(--brown); }
.mvc-card:nth-child(3) { border-top-color: #4a8a30; }
.mvc-icon { width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.mvc-card:nth-child(1) .mvc-icon { background: rgba(26,60,42,0.1); }
.mvc-card:nth-child(2) .mvc-icon { background: rgba(232,130,12,0.1); }
.mvc-card:nth-child(3) .mvc-icon { background: rgba(74,138,48,0.1); }
.mvc-icon svg { width: 30px; height: 30px; }
.mvc-card:nth-child(1) .mvc-icon svg { fill: var(--brown-dark); }
.mvc-card:nth-child(2) .mvc-icon svg { fill: var(--brown); }
.mvc-card:nth-child(3) .mvc-icon svg { fill: #4a8a30; }
.mvc-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; }
.mvc-text { font-size: 0.93rem; line-height: 1.8; color: var(--text-body); }

/* ── TIMELINE ── */
.timeline-section { background: var(--cream); padding: 90px 0; position: relative; overflow: hidden; }
.timeline-header { text-align: center; margin-bottom: 60px; }
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 50%; transform: translateX(-50%); top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--brown-dark), var(--brown), var(--brown-dark)); opacity: 0.3; }
.timeline-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; margin-bottom: 48px; align-items: center; }
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-dot { grid-column: 2; }
.timeline-item:nth-child(odd) .timeline-empty { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; grid-row: 1; text-align: left; }
.timeline-item:nth-child(even) .timeline-dot { grid-column: 2; grid-row: 1; }
.timeline-item:nth-child(even) .timeline-empty { grid-column: 1; grid-row: 1; }
.timeline-dot { display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.timeline-dot-inner { width: 48px; height: 48px; border-radius: 50%; background: var(--brown); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(232,130,12,0.35); font-family: 'Playfair Display', serif; font-size: 0.7rem; font-weight: 900; color: var(--white); text-align: center; line-height: 1.2; border: 3px solid var(--cream); }
.timeline-item:nth-child(even) .timeline-dot-inner { background: var(--brown-dark); box-shadow: 0 4px 16px rgba(26,60,42,0.35); }
.timeline-content { padding: 0 20px; }
.timeline-year { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; color: var(--brown); line-height: 1; margin-bottom: 6px; }
.timeline-item:nth-child(even) .timeline-year { color: var(--brown-dark); }
.timeline-event { font-size: 0.98rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.timeline-desc { font-size: 0.88rem; line-height: 1.7; color: var(--text-light); }

/* ── FACILITY SECTION ── */
.facility-section { background: var(--brown-dark); padding: 90px 0; position: relative; overflow: hidden; }
.facility-section .ghost-sketch { opacity: 0.08; filter: brightness(0.5) sepia(30%) invert(1); }
.facility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.facility-text .script-tag { color: var(--gold-light); }
.facility-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.facility-body { font-size: 0.98rem; line-height: 1.9; color: rgba(255,255,255,0.8); margin-bottom: 18px; }
.facility-features { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.facility-feature { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; color: rgba(255,255,255,0.85); font-weight: 600; }
.facility-feature::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-light); flex-shrink: 0; }
.facility-mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; height: 420px; }
.facility-mosaic-cell { border-radius: 16px; overflow: hidden; }
.facility-mosaic-cell img { width: 100%; height: 100%; object-fit: cover; }
.facility-mosaic-cell:nth-child(1) { border-radius: 6px 60px 6px 60px; background: rgba(255,255,255,0.12); }
.facility-mosaic-cell:nth-child(2) { border-radius: 60px 6px 60px 6px; background: rgba(255,255,255,0.07); margin-top: 20px; }
.facility-mosaic-cell:nth-child(3) { border-radius: 60px 6px 60px 6px; background: rgba(255,255,255,0.07); }
.facility-mosaic-cell:nth-child(4) { border-radius: 6px 60px 6px 60px; background: rgba(255,255,255,0.12); margin-top: -20px; }

/* ── FSSAI PANEL ── */
.fssai-section { background: var(--cream-dark); padding: 70px 0; }
.fssai-inner { display: flex; align-items: center; gap: 48px; background: var(--white); border-radius: 20px; padding: 48px 52px; box-shadow: 0 12px 48px rgba(26,60,42,0.08); border-left: 6px solid var(--brown); }
.fssai-badge-wrap { flex-shrink: 0; text-align: center; }
.fssai-badge-circle { width: 120px; height: 120px; border-radius: 50%; background: linear-gradient(135deg, var(--brown-dark), #2d6e4a); display: flex; flex-direction: column; align-items: center; justify-content: center; margin: 0 auto 12px; box-shadow: 0 8px 28px rgba(26,60,42,0.25); }
.fssai-badge-circle span:first-child { font-family: 'Lato', sans-serif; font-size: 1rem; font-weight: 900; color: var(--white); letter-spacing: 2px; }
.fssai-badge-circle span:last-child { font-size: 0.62rem; color: rgba(255,255,255,0.75); letter-spacing: 1px; text-transform: uppercase; margin-top: 2px; }
.fssai-badge-label { font-size: 0.75rem; color: var(--text-light); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.fssai-divider { width: 1px; height: 100px; background: rgba(26,60,42,0.12); flex-shrink: 0; }
.fssai-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.fssai-lic { font-size: 0.88rem; font-weight: 700; color: var(--brown); letter-spacing: 0.5px; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.fssai-lic::before { content: '🔖'; }
.fssai-body { font-size: 0.93rem; line-height: 1.8; color: var(--text-body); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  
  
  .about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-images { height: 320px; max-width: 340px; margin: 0 auto; }
  .about-img-a { width: 170px; height: 280px; }
  .about-img-b { width: 160px; height: 260px; left: 120px; top: 50px; }
  .mvc-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 48px 1fr; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; grid-row: 1; text-align: left; }
  .timeline-item:nth-child(odd) .timeline-dot,
  .timeline-item:nth-child(even) .timeline-dot { grid-column: 1; grid-row: 1; }
  .timeline-item .timeline-empty { display: none; }
  .facility-grid { grid-template-columns: 1fr; gap: 40px; }
  .facility-mosaic { height: 300px; }
  .fssai-inner { flex-direction: column; gap: 28px; padding: 32px 24px; }
  .fssai-divider { display: none; }
}
@media (max-width: 480px) {
  .about-highlights { grid-template-columns: 1fr; }
  .quote-text { font-size: 1.4rem; }
}
