/* =============================================================
   tentang.css — Halaman Tentang Kami | TOKO MADURA
   Simpan di: assets/css/tentang.css
   ============================================================= */

/* ===== HERO ===== */
.tentang-hero {
    background-color: var(--primary-light);   /* fallback kalau image gagal load */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    margin: 24px 0 40px;
    min-height: 320px;
    display: flex;
    align-items: center;
    position: relative;
}
.tentang-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(20, 95, 48, 0.88) 0%,
        rgba(20, 95, 48, 0.65) 50%,
        rgba(20, 95, 48, 0.15) 100%
    );
    z-index: 0;
}
.tentang-hero-content {
    padding: 48px 48px;
    flex: 1;
    z-index: 2;
    position: relative;
}
.tentang-hero-content .breadcrumb-item a { color: rgba(255,255,255,0.80); text-decoration: none; font-size: 13px; }
.tentang-hero-content .breadcrumb-item.active { font-size: 13px; color: rgba(255,255,255,0.60); }
.tentang-hero h1 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.tentang-hero h1 span { color: var(--accent); }
.tentang-hero p {
    font-size: 15px;
    color: rgba(255,255,255,0.90);
    margin-bottom: 28px;
    max-width: 420px;
    line-height: 1.7;
}

/* Deco blob */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    opacity: .12;
    pointer-events: none;
    z-index: 1;
    background: #fff;
}
.hero-blob-1 { width: 200px; height: 200px; top: -60px; left: -60px; }
.hero-blob-2 { width: 120px; height: 120px; bottom: -30px; left: 200px; }

/* ===== KEUNGGULAN ===== */
.keunggulan-section { margin-bottom: 56px; }
.keunggulan-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.keunggulan-card {
    text-align: center;
    padding: 28px 16px;
    border: 1.5px solid var(--border);
    border-radius: 16px;
    background: #fff;
    transition: all .25s;
}
.keunggulan-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27,122,62,.10);
}
.keunggulan-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 24px;
    color: var(--primary);
    transition: background .2s;
}
.keunggulan-card:hover .keunggulan-icon { background: var(--primary); color: #fff; }
.keunggulan-card h6 {
    font-weight: 700; font-size: 13px;
    color: var(--text-dark); margin-bottom: 8px;
}
.keunggulan-card p { font-size: 12px; color: #999; line-height: 1.6; margin: 0; }

/* ===== OUR STORY ===== */
.story-section {
    margin-bottom: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.story-tag {
    font-size: 12px; font-weight: 700;
    color: var(--primary); text-transform: uppercase;
    letter-spacing: 1.5px; margin-bottom: 12px;
}
.story-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 900; font-size: 30px;
    color: var(--text-dark); line-height: 1.2;
    margin-bottom: 16px;
}
.story-title-underline {
    width: 48px; height: 4px;
    background: var(--primary);
    border-radius: 2px; margin-bottom: 20px;
}
.story-text { font-size: 14px; color: #666; line-height: 1.8; margin-bottom: 14px; }
.story-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(27,122,62,.15);
    height: 360px;
    background-color: var(--primary-light);   /* fallback kalau image gagal load */
    background-size: cover;
    background-position: center;
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary-soft), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 80px;
}

/* ===== STATS / INFO PRAKTIS ===== */
.stats-section {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 56px;
}
.stat-item {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin: 0 auto 12px;
}
.stat-number {
    font-family: 'Nunito', sans-serif;
    font-weight: 800; font-size: 20px;
    color: var(--primary); line-height: 1.2;
    margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: #888; }

/* ===== KOMITMEN ===== */
.komitmen-section {
    background: var(--primary-soft);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 56px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
}
.komitmen-left h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 900; font-size: 22px;
    color: var(--primary); margin-bottom: 10px;
}
.komitmen-left p { font-size: 13px; color: #888; line-height: 1.7; margin: 0; }
.komitmen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.komitmen-item { text-align: center; }
.komitmen-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin: 0 auto 10px;
    transition: all .2s;
}
.komitmen-item:hover .komitmen-icon { background: var(--primary); color: #fff; }
.komitmen-item h6 { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.komitmen-item p  { font-size: 11px; color: #aaa; line-height: 1.6; margin: 0; }

/* ===== QUOTE PENUTUP ===== */
.quote-section {
    text-align: center;
    padding: 48px 20px 56px;
}
.quote-mark { font-size: 40px; color: var(--primary); line-height: 1; margin-bottom: 16px; }
.quote-text {
    font-size: 16px; color: #666; line-height: 1.8;
    max-width: 520px; margin: 0 auto;
}
.quote-text strong { color: var(--primary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .keunggulan-grid { grid-template-columns: repeat(3, 1fr); }
    .story-section   { grid-template-columns: 1fr; gap: 28px; }
    .story-img       { height: 260px; }
    .stats-section   { grid-template-columns: 1fr; gap: 24px; }
    .stat-item       { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
    .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
    .komitmen-section { grid-template-columns: 1fr; }
    .komitmen-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .tentang-hero h1 { font-size: 32px; }
    .tentang-hero-content { padding: 36px 24px; }
    .keunggulan-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-section { padding: 24px; }
    .komitmen-section { padding: 24px; }
}