/* ==================== AGENTS PAGE STYLES ==================== */

/* Hero Section */
.agents-hero {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 50%, #FFF7ED 100%);
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.agents-hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: rgba(222, 94, 9, 0.08);
    border-radius: 50%;
    filter: blur(80px);
}

.agents-hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 250px;
    height: 250px;
    background: rgba(230, 126, 34, 0.06);
    border-radius: 50%;
    filter: blur(60px);
}

.agents-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.agents-hero p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Region Section */
.agents-region {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.region-heading {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.region-heading h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}

.region-heading .region-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--primary), transparent);
    border-radius: 1px;
}

/* Agent Cards Grid */
.agents-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.agent-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #f3f4f6;
}

.agent-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 8px 24px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.agent-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border: 3px solid var(--primary);
}

.agent-avatar svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.agent-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.agent-badge {
    display: inline-block;
    background: #FFF7ED;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    border: 1px solid rgba(222, 94, 9, 0.2);
    margin-bottom: 1.25rem;
}

.agent-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.agent-info li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.875rem;
    color: #4b5563;
}

.agent-info li svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.agent-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: #fff;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.agent-btn:hover {
    background: var(--secondary);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(222, 94, 9, 0.3);
}

.agent-btn svg {
    width: 16px;
    height: 16px;
}

.agent-btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.agent-btn-whatsapp:hover {
    background: #1ebe5d;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.agent-btn-whatsapp svg {
    width: 18px;
    height: 18px;
}

/* Organization Agent Card */
.agent-card-org {
    text-align: left;
    padding: 2.5rem;
}

.agent-card-org:hover {
    transform: translateY(-4px);
}

.agent-org-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.agent-org-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FFF7ED, #FFEDD5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(222, 94, 9, 0.15);
}

.agent-org-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
}

.agent-card-org .agent-name {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    text-align: left;
}

.agent-org-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    line-height: 1.4;
}

.agent-dept {
    font-size: 0.85rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #f3f4f6;
    line-height: 1.5;
}

.agent-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.agent-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.agent-info-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.agent-info-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.1rem;
}

.agent-info-value {
    display: block;
    font-size: 0.875rem;
    color: #374151;
    font-weight: 500;
}

.agent-info-link {
    display: block;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.agent-info-link:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .agents-hero {
        padding: 7rem 1.25rem 3rem;
    }

    .agents-hero h1 {
        font-size: 2rem;
    }

    .agents-hero p {
        font-size: 1rem;
    }

    .agents-region {
        padding: 3rem 1.25rem;
    }

    .agents-grid {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .agents-hero h1 {
        font-size: 1.75rem;
    }

    .agent-card {
        padding: 1.5rem;
    }
}
