﻿/* ============================================================
   GOALS WIDGET STYLES - PAKMEDICS
   ============================================================ */

.goals-widget {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    overflow: hidden;
    margin-bottom: 20px;
}

.goals-header {
    padding: 14px 20px;
    background: linear-gradient(135deg, #0d7c6e 0%, #095a4f 100%);
    border-bottom: 1px solid #e2e8f0;
}

.goals-header h5 {
    font-weight: 700;
    color: white;
    margin: 0;
    font-size: 15px;
}

.goals-header h5 i {
    color: rgba(255,255,255,0.8);
}

.goals-body {
    padding: 18px 20px;
}

/* Goals List */
.goals-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 3px solid #0d7c6e;
    transition: all 0.3s ease;
}

.goal-item:hover {
    background: #f0faf8;
    transform: translateX(4px);
}

.goal-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0d7c6e;
    color: white;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.goal-content {
    flex: 1;
    font-size: 13px;
    color: #334155;
    line-height: 1.6;
}

.goal-content strong {
    display: block;
    color: #0a1a1f;
    margin-bottom: 2px;
}

.goal-content span {
    display: block;
    color: #64748b;
}

/* Leadership Section */
.leadership-section {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 18px;
}

.leadership-image {
    flex-shrink: 0;
}

.leadership-image img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.leadership-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.leadership-role {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.leadership-name {
    font-size: 15px;
    font-weight: 700;
    color: #0a1a1f;
}

.leadership-domain {
    font-size: 12px;
    color: #64748b;
}

/* Contact Section */
.goals-contact {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.goals-contact-header {
    padding: 10px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.goals-contact-header h6 {
    font-weight: 700;
    color: #0a1a1f;
    margin: 0;
    font-size: 13px;
}

.goals-contact-header h6 i {
    color: #0d7c6e;
}

.goals-contact-body {
    padding: 14px 16px;
}

.goals-contact-body p {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 10px;
    line-height: 1.6;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-list li i {
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.contact-list li a {
    color: #0d7c6e;
    text-decoration: none;
}

.contact-list li a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .goals-body {
        padding: 14px 16px;
    }

    .goal-item {
        padding: 8px 10px;
    }

    .goal-content {
        font-size: 12px;
    }

    .leadership-section {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .leadership-image img {
        width: 56px;
        height: 56px;
    }

    .contact-list li {
        font-size: 12px;
        padding: 4px 0;
    }
}

@media (max-width: 576px) {
    .goals-header {
        padding: 10px 14px;
    }

    .goals-header h5 {
        font-size: 13px;
    }

    .goals-body {
        padding: 10px 12px;
    }

    .goal-number {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .goal-content {
        font-size: 11px;
    }

    .leadership-name {
        font-size: 14px;
    }

    .goals-contact-body p {
        font-size: 12px;
    }

    .contact-list li {
        font-size: 11px;
        flex-wrap: wrap;
    }
}