/* ═══════════════════════════════════════════
   SERVICE / ABOUT SECTION
═══════════════════════════════════════════ */
.ab-section {
    padding: 100px 0 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
 
/* Decorative corner leaf shape */
.ab-section::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26,92,58,.06) 0%, transparent 70%);
    pointer-events: none;
}
 
.ab-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
 
/* ── TWO-COLUMN LAYOUT ── */
.ab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
 
/* ── LEFT: IMAGE STACK ── */
.ab-img-stack {
    position: relative;
}
 
/* Main image */
.ab-img-main {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(26,92,58,.18);
    position: relative;
    z-index: 2;
}
.ab-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}
.ab-img-main:hover img { transform: scale(1.04); }
 
/* Floating badge — "25+ Years Pure" */
.ab-img-badge {
    position: absolute;
    bottom: -20px;
    right: -24px;
    z-index: 4;
    background: var(--green);
    color: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(26,92,58,.35);
    min-width: 110px;
}
.ab-img-badge .badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gold-lt);
    display: block;
}
.ab-img-badge .badge-label {
    font-size: .65rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.75);
    margin-top: 4px;
    display: block;
    font-weight: 500;
}
 
/* Decorative background shape behind image */
.ab-img-bg {
    position: absolute;
    top: 24px;
    left: -24px;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: var(--cream-dk);
    border: 2px solid var(--border);
    z-index: 1;
}
 
/* ── RIGHT: CONTENT ── */
.ab-content {
    padding-left: 12px;
}
 
.ab-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--gold);
    margin-bottom: 16px;
}
.ab-eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--gold);
    display: block;
    border-radius: 2px;
}
 
.ab-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1.15;
    margin-bottom: 20px;
}
.ab-title em {
    font-style: italic;
    color: var(--gold);
}
 
.ab-divider {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    border-radius: 3px;
    margin-bottom: 22px;
}
 
.ab-body {
    font-size: .975rem;
    color: var(--text-lt);
    line-height: 1.8;
    margin-bottom: 14px;
}
 
/* ── MISSION / VISION CARDS ── */
.ab-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}
 
.ab-mv-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px 20px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s, transform .3s;
}
.ab-mv-card:hover {
    box-shadow: 0 12px 32px rgba(26,92,58,.1);
    transform: translateY(-3px);
}
 
/* Accent top bar */
.ab-mv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 16px 16px 0 0;
}
.ab-mv-card.mission::before { background: var(--green); }
.ab-mv-card.vision::before  { background: var(--gold); }
 
.ab-mv-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 12px;
    flex-shrink: 0;
}
.mission .ab-mv-icon { background: rgba(26,92,58,.09); color: var(--green); }
.vision  .ab-mv-icon { background: rgba(200,146,58,.1); color: var(--gold); }
 
.ab-mv-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}
.mission h4 { color: var(--green); }
.vision  h4 { color: var(--gold); }
 
.ab-mv-card p {
    font-size: .82rem;
    color: var(--text-lt);
    line-height: 1.65;
}
 
/* ── STATS ROW ── */
.ab-stats {
    display: flex;
    gap: 28px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.ab-stat { text-align: center; flex: 1; min-width: 70px; }
.ab-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    display: block;
}
.ab-stat-num span { color: var(--gold); }
.ab-stat-label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-lt);
    margin-top: 5px;
    display: block;
    font-weight: 500;
}
 
/* ── TRUST STRIP (below grid) ── */
.ab-trust {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 44px;
    padding: 28px 32px;
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
    justify-content: space-around;
    align-items: center;
}
.ab-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text);
}
.ab-trust-ico {
    width: 36px; height: 36px;
    background: rgba(26,92,58,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--green);
}
 
/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 992px) {
    .ab-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .ab-img-stack { max-width: 520px; margin: 0 auto; }
    .ab-content { padding-left: 0; }
    .ab-title { font-size: 2.2rem; }
    .ab-section { padding: 70px 0 60px; }
}
 
@media (max-width: 600px) {
    .ab-container { padding: 0 18px; }
    .ab-section { padding: 52px 0 44px; }
    .ab-title { font-size: 1.85rem; }
    .ab-body { font-size: .9rem; }
    .ab-mv-grid { grid-template-columns: 1fr; gap: 12px; }
    .ab-img-badge { right: -10px; bottom: -14px; padding: 14px 16px; min-width: 90px; }
    .ab-img-badge .badge-num { font-size: 1.6rem; }
    .ab-stats { gap: 16px; }
    .ab-stat-num { font-size: 1.5rem; }
    .ab-trust { padding: 20px 18px; gap: 14px; }
    .ab-trust-item { font-size: .78rem; }
    .ab-img-bg { display: none; } /* cleaner on small screens */
}
 
@media (max-width: 380px) {
    .ab-title { font-size: 1.6rem; }
    .ab-mv-card { padding: 18px 16px; }
}