/* ============================================
   برنامه‌ریزی و مشاوره - استایل اختصاصی
   ============================================ */

:root {
    --primary: #10b981;
    --primary-dark: #047857;
    --primary-deep: #064e3b;
    --gold: #facc15;
    --bg: #f8fafc;
    --white: #ffffff;
    --text: #1e1e2e;
    --text-soft: #6b7280;
    --border: #e2e8f0;
    --radius: 20px;
    --radius-sm: 14px;
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --transition: 0.3s ease;
}

.consulting-hero {
    background: linear-gradient(135deg, #064e3b 0%, #047857 40%, #10b981 100%);
    color: var(--white); text-align: center; padding: 44px 20px;
    position: relative; overflow: hidden;
}
.consulting-hero::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.consulting-hero__title { font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 900; margin-bottom: 10px; position: relative; z-index: 1; line-height: 1.5; }
.consulting-hero__highlight { color: var(--gold); }
.consulting-hero__desc { opacity: 0.85; position: relative; z-index: 1; font-size: 0.95rem; line-height: 1.8;color:whitesmoke; }

.consulting-container { max-width: 900px; margin: 0 auto; padding: 24px 20px 40px; display: flex; flex-direction: column; gap: 20px; }

.consulting-card {
    background: var(--white); border-radius: var(--radius); padding: 24px 20px;
    box-shadow: var(--shadow); border: 2px solid gold;
}
.consulting-card__title {
    font-size: 1.1rem; font-weight: 900; margin-bottom: 16px;
    border-right: 4px solid var(--primary); padding-right: 12px; color: #dc2626;
}
.consulting-card__subtitle { color: var(--text-soft); margin-bottom: 14px; font-size: 0.9rem; }

/* Timeline */
.timeline { position: relative; padding-right: 26px; }
.timeline::before {
    content: ''; position: absolute; right: 10px; top: 0; bottom: 0;
    width: 3px; background: linear-gradient(to bottom, #10b981, #059669, #047857); border-radius: 10px;
}
.timeline__item { position: relative; margin-bottom: 20px; padding-right: 18px; }
.timeline__item:last-child { margin-bottom: 0; }
.timeline__item::before {
    content: ''; position: absolute; right: -24px; top: 6px;
    width: 14px; height: 14px; background: #10b981; border-radius: 50%;
    border: 3px solid var(--white); box-shadow: 0 0 0 3px #10b981;
}
.timeline__title { font-weight: 800; color: #047857; margin-bottom: 4px; font-size: 0.95rem; }
.timeline__desc { color: var(--text-soft); font-size: 0.85rem; line-height: 1.7; }

/* Weekly Grid */
.weekly-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(125px, 1fr)); gap: 10px; margin-top: 14px; }
.day-card {
    background: #f0fdf4; border: 2px solid #bbf7d0; border-radius: var(--radius-sm);
    padding: 14px 8px; text-align: center; font-weight: 700; font-size: 0.82rem;
    transition: var(--transition); display: flex; flex-direction: column; gap: 4px;
}
.day-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); background: #dcfce7; }
.day-card__name { font-size: 0.72rem; color: #047857; font-weight: 800; }
.day-card__task { font-size: 0.78rem; color: var(--text); line-height: 1.5; }

@media (max-width: 640px) {
    .consulting-hero { padding: 32px 16px; }
    .consulting-hero__title { font-size: 1.3rem; }
    .weekly-grid { grid-template-columns: repeat(2, 1fr); }
    .consulting-card { padding: 18px 14px; }
}