/* =====================================================
   ABOUT PAGE — Page Specific Styles
   ===================================================== */

/* =====================================================
   2. PERSONAL INFO STRIP
   ===================================================== */
.h-info-section { padding: 56px 0; }
.h-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.h-info__item {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    transition: all .3s var(--h-ease);
}
.h-info__item:hover { transform: translateY(-2px); box-shadow: var(--h-card-shadow-hover); border-color: rgba(59,130,246,.35); color: var(--text-dark); }
.h-info__icon {
    width: 42px; height: 42px;
    background: rgba(59,130,246,.1);
    color: var(--primary);
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.h-info__body { flex-grow: 1; min-width: 0; }
.h-info__label {
    display: block;
    font-size: 11px; font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase; letter-spacing: 0.08em;
    margin-bottom: 2px;
}
.h-info__value {
    font-size: 14.5px; font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    overflow-wrap: break-word;
}
.h-info__value a { color: inherit; text-decoration: none; }
.h-info__value a:hover { color: var(--primary); }
@media (max-width: 900px) { .h-info { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .h-info { grid-template-columns: 1fr; gap: 12px; } }

/* =====================================================
   3. VISION & MISSION
   ===================================================== */
.h-vm__icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(30,64,175,.22);
}

/* =====================================================
   4. TECHNICAL SKILLS
   ===================================================== */
.h-skill__icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0 8px 20px rgba(30,64,175,.22);
}

/* =====================================================
   5. PROFESSIONAL JOURNEY (timeline)
   ===================================================== */
.h-tl { position: relative; padding-left: 32px; }
[dir="rtl"] .h-tl { padding-left: 0; padding-right: 32px; }
.h-tl::before {
    content: '';
    position: absolute;
    top: 8px; bottom: 8px;
    left: 9px; width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--primary-light) 50%, transparent);
}
[dir="rtl"] .h-tl::before { left: auto; right: 9px; }
.h-tl__item { position: relative; padding-bottom: 28px; }
.h-tl__item:last-child { padding-bottom: 0; }
.h-tl__dot {
    position: absolute;
    top: 26px;
    left: -32px;
    width: 20px; height: 20px;
    background: var(--bg-white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(59,130,246,.12);
}
[dir="rtl"] .h-tl__dot { left: auto; right: -32px; }

.h-tl__card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 24px 28px;
    box-shadow: var(--h-card-shadow);
    transition: all .3s var(--h-ease);
}
.h-tl__card:hover { transform: translateY(-2px); box-shadow: var(--h-card-shadow-hover); border-color: rgba(59,130,246,.35); }

.h-tl__head {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 16px; flex-wrap: wrap;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-light);
}
.h-tl__head-main { flex-grow: 1; min-width: 0; }
.h-tl__role { font-size: 18px; font-weight: 700; color: var(--text-dark); margin: 0 0 4px; }
.h-tl__company { font-size: 14px; color: var(--text-medium); margin: 0; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.h-tl__company i { color: var(--primary); font-size: 13px; }
.h-tl__company strong { color: var(--text-dark); font-weight: 600; }
.h-tl__date {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    background: rgba(59,130,246,.08);
    color: var(--primary);
    border-radius: 999px;
    font-size: 12px; font-weight: 600;
    white-space: nowrap;
}
.h-tl__date i { font-size: 11px; }

.h-tl__list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
}
.h-tl__list li {
    display: flex; align-items: flex-start;
    gap: 12px;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-medium);
}
.h-tl__list i {
    color: var(--primary);
    font-size: 11px;
    margin-top: 7px;
    flex-shrink: 0;
}
@media (max-width: 540px) {
    .h-tl { padding-left: 22px; }
    [dir="rtl"] .h-tl { padding-left: 0; padding-right: 22px; }
    .h-tl__dot { left: -22px; width: 16px; height: 16px; }
    [dir="rtl"] .h-tl__dot { left: auto; right: -22px; }
    .h-tl::before { left: 7px; }
    [dir="rtl"] .h-tl::before { left: auto; right: 7px; }
    .h-tl__card { padding: 18px 20px; }
    .h-tl__role { font-size: 16px; }
}

/* =====================================================
   6. EDUCATION
   ===================================================== */
.h-edu__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.h-edu__icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.h-edu__years {
    padding: 4px 12px;
    background: rgba(59,130,246,.08);
    color: var(--primary);
    border-radius: 999px;
    font-size: 12px; font-weight: 700;
}
.h-edu__inst { font-size: 14px; font-weight: 600; color: var(--primary); margin: 0 0 10px; }

/* =====================================================
   8. CONTACT FORM
   ===================================================== */
.h-contact {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}
.h-contact__intro { padding-top: 8px; }
.h-contact__channels { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.h-contact__channel {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all .25s var(--h-ease);
}
.h-contact__channel:hover { transform: translateY(-2px); box-shadow: var(--h-card-shadow-hover); border-color: rgba(59,130,246,.35); color: var(--text-dark); }
.h-contact__channel-icon {
    width: 40px; height: 40px;
    background: rgba(59,130,246,.1);
    color: var(--primary);
    border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.h-contact__channel strong { display: block; font-size: 13px; font-weight: 700; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.06em; }
.h-contact__channel small { display: block; font-size: 14px; color: var(--text-medium); margin-top: 2px; }
.h-contact__socials { display: flex; gap: 10px; }

.h-form {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--h-card-shadow);
}
.h-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.h-form__field { display: flex; flex-direction: column; gap: 8px; }
.h-form__field:last-child { margin-bottom: 0; }
.h-form__field label { font-size: 13px; font-weight: 600; color: var(--text-medium); }
.h-form__input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: all .2s var(--h-ease);
}
.h-form__input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}
.h-form__textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.h-form__submit { width: 100%; justify-content: center; margin-top: 22px; }
.h-form__notice { font-size: 11.5px; color: var(--text-light); margin: 14px 0 0; line-height: 1.6; }
.h-form__notice a { color: var(--primary); }
.h-form .btn-loading { display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 900px) {
    .h-contact { grid-template-columns: 1fr; gap: 40px; }
    .h-form { padding: 28px 22px; }
    .h-form__row { grid-template-columns: 1fr; gap: 16px; }
}
