/**
 * Ajilamemo About Us - Final Responsive Styles
 * Version: 2.1
 */

:root {
  --ajm-primary: #b60000;
  --ajm-deep: #04366c;
  --ajm-bg: #fffdfd;
  --ajm-border: rgba(182, 0, 0, 0.12);
  --ajm-shadow: 0 10px 30px rgba(4, 54, 108, 0.08);
  --ajm-text: #333;
}

/* ساختار کلی */
.ajm-about-page { 
    direction: rtl; 
    text-align: center; 
    background: var(--ajm-bg); 
    padding-bottom: 60px; 
    font-family: inherit;
    line-height: 1.8;
}

.ajm-container { 
    width: min(1200px, calc(100% - 40px)); 
    margin: 0 auto; 
}

.ajm-section { 
    padding: 50px 0; 
}

/* تایپوگرافی بخش‌ها */
.ajm-section-head { margin-bottom: 40px; }
.ajm-section-head__subtitle { 
    display: block; 
    color: var(--ajm-primary); 
    font-weight: 700; 
    margin-bottom: 10px; 
}
.ajm-section-head h2 { font-size: 28px; color: var(--ajm-deep); }

/* بخش هیرو */
.ajm-hero { 
    padding: 80px 0; 
    background: linear-gradient(135deg, var(--ajm-primary), var(--ajm-deep)); 
    color: white; 
}
.ajm-hero h1 { font-size: 38px; color: white; margin-bottom: 20px; font-weight: 800; }
.ajm-hero p { font-size: 18px; max-width: 700px; margin: 0 auto; opacity: 0.9; }

/* کارت محتوا (داستان برند) */
.ajm-content-card { 
    background: white; 
    border: 1px solid var(--ajm-border); 
    border-radius: 24px; 
    padding: 40px; 
    max-width: 850px; 
    margin: 0 auto; 
    box-shadow: var(--ajm-shadow); 
}

.ajm-quote-box {
    margin: 30px 0;
    padding: 20px;
    background: #fffafa;
    border-right: 5px solid var(--ajm-primary);
    border-radius: 10px;
}
.ajm-quote-box strong { color: var(--ajm-primary); display: block; margin-bottom: 5px; }

/* بخش تصویر اختصاصی */
.ajm-image-wrapper { 
    max-width: 900px; 
    margin: 0 auto; 
    border-radius: 24px; 
    overflow: hidden; 
    box-shadow: var(--ajm-shadow); 
}
.ajm-image-wrapper img { 
    width: 100% !important; 
    height: auto !important; 
    display: block; 
    object-fit: cover; 
}

/* گرید ویژگی‌ها (چرا آجیلاممو) */
.ajm-feature-grid { 
    display: grid; 
    /* نمایش ۴ ستون ثابت در دسکتاپ */
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
    max-width: 1150px; 
    margin: 40px auto; 
}

.ajm-feature-card { 
    background: white; 
    padding: 35px 20px; 
    border-radius: 24px; 
    border: 1px solid var(--ajm-border); 
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ajm-feature-card:hover { 
    transform: translateY(-10px); 
    box-shadow: var(--ajm-shadow); 
    border-color: var(--ajm-primary);
}

/* استایل دقیق اعداد داخل باکس قرمز */
.ajm-feature-card__icon { 
    width: 65px; 
    height: 65px; 
    background: var(--ajm-primary); 
    border-radius: 15px; 
    margin-bottom: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.ajm-feature-card__icon h3 { 
    color: #ffffff !important; 
    margin: 0 !important; 
    padding: 0 !important;
    font-size: 26px; 
    font-weight: 800; 
    line-height: 1; 
    text-align: center;
}

.ajm-feature-card h3 { font-size: 20px; margin-bottom: 15px; color: var(--ajm-deep); }
.ajm-feature-card p { font-size: 14px; color: #666; margin: 0; }

/* --- تنظیمات ریسپانسیو (Responsive) --- */

/* تبلت: ۲ ستون */
@media (max-width: 1024px) {
    .ajm-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* موبایل: ۱ ستون */
@media (max-width: 600px) {
    .ajm-feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ajm-hero h1 { font-size: 28px; }
    .ajm-hero p { font-size: 16px; }
    
    .ajm-content-card { padding: 25px; }
    
    .ajm-section-head h2 { font-size: 24px; }
}