/**
 * Ajilamemo Contact Us - Final Responsive Styles
 */

: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-contact-page { 
    direction: rtl; 
    text-align: right; /* برخلاف درباره ما، اطلاعات تماس معمولا چپ/راست چین است */
    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: 40px 0; 
}

/* بخش هیرو */
.ajm-hero { 
    padding: 60px 0; 
    background: linear-gradient(135deg, var(--ajm-primary), var(--ajm-deep)); 
    color: white; 
    text-align: center;
    margin-bottom: 30px;
}
.ajm-hero h1 { font-size: 38px; color: white; margin-bottom: 15px; font-weight: 800; }
.ajm-hero p { font-size: 18px; max-width: 800px; margin: 0 auto; opacity: 0.9; }

/* Grid برای اطلاعات تماس و نقشه */
.ajm-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* اطلاعات تماس کوچکتر، نقشه بزرگتر */
    gap: 30px;
    align-items: flex-start;
}

.ajm-info-card, .ajm-map-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--ajm-shadow);
    border: 1px solid var(--ajm-border);
}

.ajm-info-card h2, .ajm-map-card h2 {
    font-size: 24px;
    color: var(--ajm-deep);
    border-bottom: 2px solid var(--ajm-border);
    padding-bottom: 10px;
    margin-bottom: 25px;
    text-align: right;
}

/* استایل دهی آیتم‌های تماس */
.ajm-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.ajm-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ajm-item-details {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.ajm-item-details strong {
    font-size: 16px;
    color: var(--ajm-primary);
    font-weight: 700;
    margin-bottom: 5px;
}

.ajm-item-details span, .ajm-item-details a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
    transition: color 0.2s;
}

.ajm-item-details a:hover {
    color: var(--ajm-deep);
}

/* استایل نقشه */
.ajm-map-embed {
    position: relative;
    padding-bottom: 56.25%; /* نسبت 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}

.ajm-map-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- تنظیمات ریسپانسیو (Responsive) --- */

/* تبلت و موبایل: آیتم‌ها زیر هم قرار می‌گیرند */
@media (max-width: 1024px) {
    .ajm-grid {
        grid-template-columns: 1fr; /* تک ستون برای تبلت و موبایل */
    }
    
    .ajm-map-card {
        order: -1; /* نقشه اول قرار بگیرد */
    }
    
    .ajm-hero h1 { font-size: 30px; }
    .ajm-info-card, .ajm-map-card { padding: 20px; }
}